UNPKG

375 BTypeScriptView Raw
1export interface Schema {
2 currentDirectory: string;
3 id: number;
4 info: {
5 [key: string]: any;
6 };
7 options?: {
8 [key: string]: any;
9 };
10 target?: Target;
11 workspaceRoot: string;
12 [property: string]: any;
13}
14export interface Target {
15 configuration?: string;
16 project: string;
17 target: string;
18 [property: string]: any;
19}