export interface Schema { path?: string; name: string; project?: string; displayBlock?: boolean; inlineStyle?: boolean; inlineTemplate?: boolean; viewEncapsulation?: 'Emulated' | 'None' | 'ShadowDom'; changeDetection?: 'Default' | 'OnPush'; style?: 'css' | 'scss' | 'sass' | 'less' | 'none'; skipTests?: boolean; skipImport?: boolean; selector?: string; skipSelector?: boolean; } export interface NormalizedSchema extends Schema { path: string; project: string; projectSourceRoot: string; standalone: true; flat: boolean; selector: string; }