ngx-spec
Version:
A missing schematics for creating missing / recreating Angular 6+ specs
23 lines (22 loc) • 343 B
TypeScript
export interface Schema {
/**
* The name of the spec.
*/
name: string;
/**
* The type to create the spec for.
*/
type?: string;
/**
* The path to create the spec.
*/
path?: string;
/**
* The name of the project.
*/
project?: string;
/**
* Whether to force
*/
ignoreTargetNotFound?: boolean;
}