# Installation
> `npm install --save @types/mock-require`

# Summary
This package contains type definitions for mock-require (https://github.com/boblauer/mock-require).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mock-require.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mock-require/index.d.ts)
````ts
type StubFunction = (...params: any[]) => any;
type Stub = object | StubFunction;

interface Mock {
    (path: string, mockExport: string | Stub): void;
    stop(path: string): void;
    stopAll(): void;
    reRequire(path: string): any;
}

declare const mock: Mock;

export = mock;

````

### Additional Details
 * Last updated: Sat, 19 Oct 2024 03:38:51 GMT
 * Dependencies: none

# Credits
These definitions were written by .
