11 lines
184 B
TypeScript
Executable File
11 lines
184 B
TypeScript
Executable File
export interface Schema {
|
|
/**
|
|
* The name of the project.
|
|
*/
|
|
project: string;
|
|
/**
|
|
* Skip installing dependency packages.
|
|
*/
|
|
skipInstall?: boolean;
|
|
}
|