12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
export interface GeneratorOptions {
|
|
project: string;
|
|
buildTarget?: string;
|
|
skipFormat?: boolean;
|
|
stylesEntryPoint?: string;
|
|
skipPackageJson?: boolean;
|
|
}
|
|
|
|
export interface NormalizedGeneratorOptions extends GeneratorOptions {
|
|
buildTarget: string;
|
|
}
|