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