20 lines
363 B
TypeScript

export interface Schema {
name: string;
project: string;
path?: string;
prefix?: string;
skipTests?: boolean;
skipImport?: boolean;
selector?: string;
standalone?: boolean;
flat?: boolean;
module?: string;
export?: boolean;
skipFormat?: boolean;
}
export interface NormalizedSchema extends Schema {
directory: string;
path: string;
}