Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
705 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | * Generates an app shell for running a server-side version of an app.
|
---|
| 3 | */
|
---|
| 4 | export interface Schema {
|
---|
| 5 | /**
|
---|
| 6 | * The name of the application directory.
|
---|
| 7 | */
|
---|
| 8 | appDir?: string;
|
---|
| 9 | /**
|
---|
| 10 | * The app ID to use in withServerTransition().
|
---|
| 11 | */
|
---|
| 12 | appId?: string;
|
---|
| 13 | /**
|
---|
| 14 | * The name of the main entry-point file.
|
---|
| 15 | */
|
---|
| 16 | main?: string;
|
---|
| 17 | /**
|
---|
| 18 | * The name of the related client app.
|
---|
| 19 | */
|
---|
| 20 | project: string;
|
---|
| 21 | /**
|
---|
| 22 | * The name of the root module class.
|
---|
| 23 | */
|
---|
| 24 | rootModuleClassName?: string;
|
---|
| 25 | /**
|
---|
| 26 | * The name of the root module file
|
---|
| 27 | */
|
---|
| 28 | rootModuleFileName?: string;
|
---|
| 29 | /**
|
---|
| 30 | * Route path used to produce the app shell.
|
---|
| 31 | */
|
---|
| 32 | route?: string;
|
---|
| 33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.