quip-cli
Version:
A Command Line Interface for the Quip Live Apps platform
20 lines (19 loc) • 687 B
TypeScript
import { Command, flags } from "@oclif/command";
export default class Migration extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
folder: flags.IOptionFlag<string>;
version: import("@oclif/parser/lib/flags").IOptionFlag<number | undefined>;
"dry-run": import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
manifest: flags.IOptionFlag<string | undefined>;
};
static args: {
name: string;
optional: boolean;
description: string;
}[];
private getMigrationName_;
private incrementMigrationName_;
run(): Promise<void>;
}