Aktueller Stand

This commit is contained in:
2026-01-23 01:33:35 +01:00
parent 082dc5e110
commit 2766dd12c5
10109 changed files with 1578841 additions and 77685 deletions

35
backend/node_modules/effect/dist/dts/TestLive.d.ts generated vendored Normal file
View File

@@ -0,0 +1,35 @@
/**
* @since 2.0.0
*/
import * as Context from "./Context.js";
import type * as DefaultServices from "./DefaultServices.js";
import type * as Effect from "./Effect.js";
/**
* @since 2.0.0
*/
export declare const TestLiveTypeId: unique symbol;
/**
* @since 2.0.0
*/
export type TestLiveTypeId = typeof TestLiveTypeId;
/**
* The `Live` trait provides access to the "live" default Effect services from
* within tests for workflows such as printing test results to the console or
* timing out tests where it is necessary to access the real implementations of
* these services.
*
* @since 2.0.0
*/
export interface TestLive {
readonly [TestLiveTypeId]: TestLiveTypeId;
provide<A, E, R>(effect: Effect.Effect<A, E, R>): Effect.Effect<A, E, R>;
}
/**
* @since 2.0.0
*/
export declare const TestLive: Context.Tag<TestLive, TestLive>;
/**
* @since 2.0.0
*/
export declare const make: (services: Context.Context<DefaultServices.DefaultServices>) => TestLive;
//# sourceMappingURL=TestLive.d.ts.map