2.0.3 • Published 6 months ago

@types/mock-require v2.0.3

Weekly downloads
22,239
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for mock-require 2.0
// Project: https://github.com/boblauer/mock-require
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.4

/// <reference types="node" />

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 var mock: Mock;

export = mock;

Additional Details

  • Last updated: Thu, 23 Dec 2021 23:35:06 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by DefinitelyTyped.

2.0.3

6 months ago

2.0.2

7 months ago

2.0.1

2 years ago

2.0.0

6 years ago

1.3.3

8 years ago

1.3.2

8 years ago

1.3.1

8 years ago