quip-cli
Version:
A Command Line Interface for the Quip Live Apps platform
23 lines (22 loc) • 841 B
TypeScript
import { Command, flags } from "@oclif/command";
export declare const login: ({ site, transparent, hostname, port, config, }: {
site: string;
transparent?: boolean | undefined;
hostname?: string | undefined;
port?: number | undefined;
config?: string | undefined;
}) => Promise<void>;
export default class Login extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
site: flags.IOptionFlag<string>;
port: import("@oclif/parser/lib/flags").IOptionFlag<number>;
hostname: flags.IOptionFlag<string>;
config: flags.IOptionFlag<string>;
};
static args: never[];
catch(error: Error): Promise<void>;
run(): Promise<void>;
}