import { InlineConfig } from "vitest/node"; import { UserConfig } from "vite"; //#region index.d.ts type VitestConfig = UserConfig & { test?: InlineConfig; }; type CustomConfig = VitestConfig & { /** The value of import.meta.url from your config. */url: string; }; declare const frontend: ({ test, ...other }?: CustomConfig) => VitestConfig; declare const backend: ({ test, ...other }?: CustomConfig) => VitestConfig; //#endregion export { backend, frontend };