5ba5b9899d
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
import 'vitest';
|
|
|
|
declare module 'vitest' {
|
|
interface Assertion<T = unknown> {
|
|
toBeOkResponse(): T;
|
|
}
|
|
interface AsymmetricMatchersContaining {
|
|
toBeOkResponse(): unknown;
|
|
}
|
|
}
|