9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
export declare class SchematicOption {
|
|
private name;
|
|
private value;
|
|
constructor(name: string, value: boolean | string);
|
|
get normalizedName(): string;
|
|
toCommandString(): string;
|
|
private format;
|
|
}
|