@nx/angular
Version:
22 lines (20 loc) • 412 B
TypeScript
export interface Schema {
path: string;
name?: string;
prefix?: string;
skipTests?: boolean;
skipImport?: boolean;
selector?: string;
standalone?: boolean;
module?: string;
export?: boolean;
type?: string;
skipFormat?: boolean;
}
export interface NormalizedSchema extends Schema {
directory: string;
filePath: string;
fileName: string;
symbolName: string;
projectName: string;
}