UNPKG

317 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}
13export interface Target {
14 configuration?: string;
15 project: string;
16 target: string;
17}