qforce
Version:
Commands to help with salesforce development.
11 lines (10 loc) • 344 B
TypeScript
import { Command } from '@oclif/command';
export default class Ol extends Command {
static description: string;
static examples: string[];
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
verbose: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
run(): Promise<void>;
}