vibetunnel/web/vitest.d.ts
2025-06-19 01:39:27 +02:00

11 lines
No EOL
229 B
TypeScript

/// <reference types="vitest" />
// Custom matchers for Vitest
declare module 'vitest' {
interface Assertion {
toBeValidSession(): this;
}
interface AsymmetricMatchersContaining {
toBeValidSession(): unknown;
}
}