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