UNPKG

191 BTypeScriptView Raw
1import { FunctionSpy } from "./function-spy";
2export declare type TypedFunction = (...args: Array<any>) => any;
3export declare type ISpiedFunction<T extends TypedFunction> = T & FunctionSpy;