nx/packages/bazel/src/app/schema.d.ts
2017-10-07 12:09:45 -04:00

14 lines
318 B
TypeScript

export interface Schema {
name: string;
directory?: string;
sourceDir?: string;
inlineStyle?: boolean;
inlineTemplate?: boolean;
viewEncapsulation?: 'Emulated' | 'Native' | 'None';
changeDetection?: 'Default' | 'OnPush';
prefix?: string;
style?: string;
skipTests?: boolean;
routing?: boolean;
}