UNPKG

219 BTypeScriptView Raw
1export declare class SchematicOption {
2 private name;
3 private value;
4 constructor(name: string, value: boolean | string);
5 get normalizedName(): string;
6 toCommandString(): string;
7 private format;
8}