31 lines
696 B
TypeScript
31 lines
696 B
TypeScript
/**
|
|
* Generates an application shell for running a server-side version of an app.
|
|
*/
|
|
export interface Schema {
|
|
/**
|
|
* The application ID to use in withServerTransition().
|
|
* @deprecated This option is no longer used.
|
|
*/
|
|
appId?: string;
|
|
/**
|
|
* The name of the main entry-point file.
|
|
*/
|
|
main?: string;
|
|
/**
|
|
* The name of the related client app.
|
|
*/
|
|
project: string;
|
|
/**
|
|
* The name of the root module class.
|
|
*/
|
|
rootModuleClassName?: string;
|
|
/**
|
|
* The name of the root module file
|
|
*/
|
|
rootModuleFileName?: string;
|
|
/**
|
|
* Route path used to produce the application shell.
|
|
*/
|
|
route?: string;
|
|
}
|