UNPKG

289 BTypeScriptView Raw
1export interface Schema {
2 projectName: string;
3 destination: string;
4 importPath?: string;
5 updateImportPath: boolean;
6 skipFormat?: boolean;
7}
8
9export interface NormalizedSchema extends Schema {
10 importPath: string;
11 newProjectName: string;
12 relativeToRootDestination: string;
13}