UNPKG

@marteye/studio-cli

Version:

CLI for MartEye Studio API

11 lines 458 B
export type OutputFormat = 'json' | 'yaml' | 'table' | 'csv'; export interface OutputOptions { format?: OutputFormat; query?: string; noColor?: boolean; } export declare function output(data: any, options?: OutputOptions): void; export declare function success(message: string): void; export declare function error(message: string, details?: any): void; export declare function warning(message: string): void; //# sourceMappingURL=output.d.ts.map