UNPKG

flagpole

Version:

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

19 lines (18 loc) 408 B
import { Command } from "../command"; interface iFileWatcher { contentMd5: string | null; fileWait: any; } export default class About extends Command { commandString: string; files: { [filename: string]: iFileWatcher; }; isHidden: boolean; private fsWait; private changeCount; action(): Promise<void>; private watchTestSrc; private watchDist; } export {};