@labnex/cli
Version:
CLI for Labnex, an AI-Powered Testing Automation Platform
14 lines • 557 B
TypeScript
export interface LabnexConfig {
apiUrl: string;
token?: string;
userId?: string;
email?: string;
verbose?: boolean;
}
export declare function initConfig(): Promise<void>;
export declare function loadConfig(): Promise<LabnexConfig>;
export declare function saveConfig(config: LabnexConfig): Promise<void>;
export declare function updateConfig(updates: Partial<LabnexConfig>): Promise<LabnexConfig>;
export declare function clearConfig(): Promise<void>;
export declare function getConfigPath(): string;
//# sourceMappingURL=config.d.ts.map