UNPKG

flagpole

Version:

Simple and fast DOM integration, headless or headful browser, and REST API testing framework.

10 lines (9 loc) 273 B
import { Command, CliCommandOption } from "../command"; export default class Add extends Command { commandString: string; description: string; options: CliCommandOption[]; action(type: string, args: { [key: string]: string; }): Promise<void>; }