aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/vitest/dist/worker.d.ts
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/vitest/dist/worker.d.ts
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/vitest/dist/worker.d.ts')
-rw-r--r--vanilla/node_modules/vitest/dist/worker.d.ts32
1 files changed, 0 insertions, 32 deletions
diff --git a/vanilla/node_modules/vitest/dist/worker.d.ts b/vanilla/node_modules/vitest/dist/worker.d.ts
deleted file mode 100644
index 03ceeb0..0000000
--- a/vanilla/node_modules/vitest/dist/worker.d.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { W as WorkerGlobalState, a as WorkerSetupContext, B as BirpcOptions } from './chunks/worker.d.Dyxm8DEL.js';
-import { T as Traces } from './chunks/traces.d.402V_yFI.js';
-import { Awaitable } from '@vitest/utils';
-import { ModuleRunner } from 'vite/module-runner';
-import { R as RuntimeRPC } from './chunks/rpc.d.RH3apGEf.js';
-import '@vitest/runner';
-import './chunks/config.d.Cy95HiCx.js';
-import '@vitest/pretty-format';
-import '@vitest/snapshot';
-import '@vitest/utils/diff';
-import './chunks/environment.d.CrsxCzP1.js';
-
-/** @experimental */
-declare function setupEnvironment(context: WorkerSetupContext): Promise<() => Promise<void>>;
-/** @experimental */
-declare function runBaseTests(method: "run" | "collect", state: WorkerGlobalState, traces: Traces): Promise<void>;
-
-type WorkerRpcOptions = Pick<BirpcOptions<RuntimeRPC>, "on" | "off" | "post" | "serialize" | "deserialize">;
-interface VitestWorker extends WorkerRpcOptions {
- runTests: (state: WorkerGlobalState, traces: Traces) => Awaitable<unknown>;
- collectTests: (state: WorkerGlobalState, traces: Traces) => Awaitable<unknown>;
- onModuleRunner?: (moduleRunner: ModuleRunner) => Awaitable<unknown>;
- setup?: (context: WorkerSetupContext) => Promise<() => Promise<unknown>>;
-}
-
-interface Options extends VitestWorker {
- teardown?: () => void;
-}
-/** @experimental */
-declare function init(worker: Options): void;
-
-export { init, runBaseTests, setupEnvironment };