2019-08-09 11:15:40 -04:00

24 lines
441 B
TypeScript

import { UnitTestRunner } from '../../utils/test-runners';
export interface Schema {
name: string;
skipFormat: boolean;
simpleModuleName: boolean;
directory?: string;
sourceDir?: string;
publishable: boolean;
spec?: boolean;
flat?: boolean;
commonModule?: boolean;
style?: string;
prefix?: string;
routing?: boolean;
lazy?: boolean;
parentModule?: string;
tags?: string;
unitTestRunner: UnitTestRunner;
}