| 16 | |
| 17 | declare namespace jest { |
| 18 | interface Matchers<R> { |
| 19 | toBeTypeOf: ( |
| 20 | expected: |
| 21 | | "string" |
| 22 | | "number" |
| 23 | | "bigint" |
| 24 | | "boolean" |
| 25 | | "symbol" |
| 26 | | "undefined" |
| 27 | | "object" |
| 28 | | "function" |
| 29 | ) => void; |
| 30 | toEndWith: (expected: string) => void; |
| 31 | } |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected