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