mirror of https://github.com/webpack/webpack.git
19 lines
290 B
TypeScript
19 lines
290 B
TypeScript
|
declare module "*.json";
|
||
|
|
||
|
declare namespace jest {
|
||
|
interface Matchers<R> {
|
||
|
toBeTypeOf: (
|
||
|
expected:
|
||
|
| "string"
|
||
|
| "number"
|
||
|
| "bigint"
|
||
|
| "boolean"
|
||
|
| "symbol"
|
||
|
| "undefined"
|
||
|
| "object"
|
||
|
| "function"
|
||
|
) => void;
|
||
|
toEndWith: (expected: string) => void;
|
||
|
}
|
||
|
}
|