ServerProperties.d.ts 175 B

12345678
  1. type ServerProperties = {
  2. port: number;
  3. locale?: string;
  4. i18nPath?: string;
  5. middlewaresPath?: string;
  6. routesPath?: string;
  7. };
  8. export { ServerProperties };