quip-cli
Version:
A Command Line Interface for the Quip Live Apps platform
15 lines (14 loc) • 536 B
TypeScript
import { Command, flags } from "@oclif/command";
export default class Apps extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
site: flags.IOptionFlag<string>;
id: flags.IOptionFlag<string | undefined>;
version: flags.IOptionFlag<string | undefined>;
json: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
config: flags.IOptionFlag<string>;
};
static args: never[];
run(): Promise<void>;
}