UNPKG

gremlins-ts

Version:

A monkey testing library written in JavaScript, for Node.js and the browser. Use it to check the robustness of web applications by unleashing a horde of undisciplined gremlins.

9 lines (8 loc) 233 B
declare type Services<A> = { [name: string]: A; }; declare type Objects<A> = Array<{ [name: string]: (param?: A) => boolean; }>; export declare function inject<A>(services: Services<A>, objects: Objects<A>): void; export {};