Installation
npm install --save @types/mockery
Summary
This package contains type definitions for mockery (https://github.com/mfncooper/mockery).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mockery.
interface MockeryEnableArgs {
useCleanCache?: boolean | undefined;
warnOnReplace?: boolean | undefined;
warnOnUnregistered?: boolean | undefined;
}
export declare function enable(args?: MockeryEnableArgs): void;
export declare function disable(): void;
export declare function registerMock(name: string, mock: any): void;
export declare function deregisterMock(name: string): void;
export declare function registerSubstitute(name: string, substitute: string): void;
export declare function deregisterSubstitute(name: string): void;
export declare function registerAllowable(name: string, unhook?: boolean): void;
export declare function deregisterAllowable(name: string): void;
export declare function registerAllowables(names: string[]): void;
export declare function deregisterAllowables(names: string[]): void;
export declare function deregisterAll(): void;
export declare function resetCache(): void;
export declare function warnOnUnregistered(value: boolean): void;
export declare function warnOnReplace(value: boolean): void;
Additional Details
- Last updated: Wed, 07 Jul 2021 00:01:43 GMT
- Dependencies: none
- Global values: none
Credits
These definitions were written by jt000.