17 lines
400 B
TypeScript
17 lines
400 B
TypeScript
import { ProjectConfiguration } from '@nx/devkit';
|
|
|
|
export interface GeneratorOptions {
|
|
library: string;
|
|
name: string;
|
|
skipModule?: boolean;
|
|
skipFormat?: boolean;
|
|
}
|
|
|
|
export interface NormalizedGeneratorOptions extends GeneratorOptions {
|
|
entryPointDestination: string;
|
|
libraryProject: ProjectConfiguration;
|
|
mainEntryPoint: string;
|
|
secondaryEntryPoint: string;
|
|
skipModule: boolean;
|
|
}
|