9 lines
195 B
TypeScript
Executable file
9 lines
195 B
TypeScript
Executable file
/**
|
|
* Generates an application shell for running a server-side version of an app.
|
|
*/
|
|
export interface Schema {
|
|
/**
|
|
* The name of the related client app.
|
|
*/
|
|
project: string;
|
|
}
|