1 2 3 4 5 6 7 8 9 10 11 12 13
export interface Schema { error?: string; info?: { [key: string]: any; }; success: boolean; target?: Target; } export interface Target { configuration?: string; project?: string; target?: string; }