schema.d.ts 696 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Generates an application shell for running a server-side version of an app.
  3. */
  4. export interface Schema {
  5. /**
  6. * The application ID to use in withServerTransition().
  7. * @deprecated This option is no longer used.
  8. */
  9. appId?: string;
  10. /**
  11. * The name of the main entry-point file.
  12. */
  13. main?: string;
  14. /**
  15. * The name of the related client app.
  16. */
  17. project: string;
  18. /**
  19. * The name of the root module class.
  20. */
  21. rootModuleClassName?: string;
  22. /**
  23. * The name of the root module file
  24. */
  25. rootModuleFileName?: string;
  26. /**
  27. * Route path used to produce the application shell.
  28. */
  29. route?: string;
  30. }