11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
|
|
import { I as InlineConfig } from './reporters.nr4dxCkA.js';
|
||
|
|
|
||
|
|
type VitestInlineConfig = InlineConfig;
|
||
|
|
declare module 'vite' {
|
||
|
|
interface UserConfig {
|
||
|
|
/**
|
||
|
|
* Options for Vitest
|
||
|
|
*/
|
||
|
|
test?: VitestInlineConfig;
|
||
|
|
}
|
||
|
|
}
|