You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
705 B
33 lines
705 B
/**
|
|
* Generates an app shell for running a server-side version of an app.
|
|
*/
|
|
export interface Schema {
|
|
/**
|
|
* The name of the application directory.
|
|
*/
|
|
appDir?: string;
|
|
/**
|
|
* The app ID to use in withServerTransition().
|
|
*/
|
|
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 app shell.
|
|
*/
|
|
route?: string;
|
|
}
|