mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
import 'vitest';
|
|
|
|
interface CustomMatchers<R = unknown> {
|
|
toSatisfy: (predicate: (value: string) => boolean) => R,
|
|
}
|
|
|
|
declare module 'vitest' {
|
|
interface Assertion<T = any> extends CustomMatchers<T> {}
|
|
interface AsymmetricMatchersContaining extends CustomMatchers {}
|
|
}
|