2019-03-02 12:03:30 -05:00

20 lines
511 B
TypeScript

import { Framework } from './.../utils/frameworks';
import { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
export interface Schema {
framework: Framework;
name: string;
skipFormat: boolean;
inlineStyle?: boolean;
inlineTemplate?: boolean;
viewEncapsulation?: 'Emulated' | 'Native' | 'None';
routing?: boolean;
prefix?: string;
style?: string;
skipTests?: boolean;
directory?: string;
tags?: string;
unitTestRunner: UnitTestRunner;
e2eTestRunner: E2eTestRunner;
}