mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 23:12:03 +08:00
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import 'vitest';
|
|
|
|
interface CustomMatchers<R = unknown> {
|
|
toMatchPaths(paths: string[]): R;
|
|
}
|
|
|
|
declare module 'vitest' {
|
|
interface Assertion<T = unknown> extends CustomMatchers<T> {}
|
|
interface AsymmetricMatchersContaining extends CustomMatchers {}
|
|
}
|