qforce
Version:
Commands to help with salesforce development.
15 lines (14 loc) • 379 B
TypeScript
import { Command } from '@oclif/command';
export default class Open extends Command {
static description: string;
static aliases: string[];
static examples: string[];
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
static args: {
name: string;
required: boolean;
}[];
run(): Promise<void>;
}