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