muta-cli
Version:
muta-cli ========
11 lines (10 loc) • 331 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class REPL extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
endpoint: flags.IOptionFlag<string | undefined>;
};
static args: never[];
run(): Promise<void>;
}