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