mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
404 B
TypeScript
13 lines
404 B
TypeScript
// Type definitions for jest-matcher-one-of 1.0
|
|
// Project: https://github.com/d4nyll/jest-matcher-one-of#readme
|
|
// Definitions by: Joe Mitchard <https://github.com/joemitchard>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
/// <reference types="jest" />
|
|
declare namespace jest {
|
|
interface Matchers<R> {
|
|
toBeOneOf(expected: any[]): R;
|
|
}
|
|
}
|