10 lines
166 B
TypeScript
Executable File
10 lines
166 B
TypeScript
Executable File
/**
|
|
* Generates and configures environment files for a project.
|
|
*/
|
|
export interface Schema {
|
|
/**
|
|
* The name of the project.
|
|
*/
|
|
project: string;
|
|
}
|