ServerProperties.d.ts 275 B

12345678910111213
  1. type ServerProperties = {
  2. port: number;
  3. locale?: string;
  4. i18nPath?: string;
  5. middlewaresPath?: string;
  6. routesPath?: string;
  7. viewEngine?: string;
  8. viewsPath?: string;
  9. options?: {
  10. [key: string]: any;
  11. };
  12. };
  13. export { ServerProperties };