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