Files
Botexercito/Frontend/angular-internal-chat/node_modules/@schematics/angular/config/schema.d.ts
T

21 lines
403 B
TypeScript
Raw Normal View History

2026-03-22 18:07:19 +00:00
/**
* Generates a configuration file in the given project.
*/
export interface Schema {
/**
* The name of the project.
*/
project: string;
/**
* Specifies which type of configuration file to create.
*/
type: Type;
}
/**
* Specifies which type of configuration file to create.
*/
export declare enum Type {
Browserslist = "browserslist",
Karma = "karma"
}