blob: 6e12b6655c6ec9bf9febdef3be615bce272e5597 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/**
* 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;
}
|