@cloud-cli/cli
Version:
CLI for the Cloud CLI project
9 lines (8 loc) • 330 B
text/typescript
declare const cloud: CloudCommands;
type Args = Record<string, string> | null;
type CloudCommands = Record<string, {
[k: string]: (args?: Args) => Promise<unknown>;
}>;
export declare function run(command: string, args?: Args): Promise<unknown>;
export declare function auth(key: string): Promise<void>;
export default cloud;