@shipengine/connect
Version:
The official developer tooling for building ShipEngine connect apps
12 lines (11 loc) • 414 B
TypeScript
import { flags } from '@oclif/command';
import AppBaseCommand from '../../base-app-command';
export default class List extends AppBaseCommand {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
format: flags.IOptionFlag<string>;
debug: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
run(): Promise<void>;
}