UNPKG

flagpole

Version:

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

17 lines (16 loc) 413 B
export declare type CompareCallback = (a: any, b: any) => number; export declare type JsFunction = string | (() => any); export declare type ClassConstructor<T> = { new (...args: any[]): T; }; export declare type OptionalXY = { x?: number; y?: number; }; export interface iCallbackAndMessage { message: string; callback: Function; } export declare type KeyValue = { [key: string]: any; };