mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-27 09:45:53 +00:00
11 lines
No EOL
229 B
TypeScript
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;
|
|
}
|
|
} |