Initial commit
This commit is contained in:
commit
b3a51a4115
10336 changed files with 2381973 additions and 0 deletions
34
node_modules/effect/src/DefaultServices.ts
generated
vendored
Normal file
34
node_modules/effect/src/DefaultServices.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
import type * as Clock from "./Clock.js"
|
||||
import type * as ConfigProvider from "./ConfigProvider.js"
|
||||
import type * as Console from "./Console.js"
|
||||
import type * as Context from "./Context.js"
|
||||
import type * as FiberRef from "./FiberRef.js"
|
||||
import * as internal from "./internal/defaultServices.js"
|
||||
import type * as Random from "./Random.js"
|
||||
import type * as Tracer from "./Tracer.js"
|
||||
|
||||
/**
|
||||
* @since 2.0.0
|
||||
* @category models
|
||||
*/
|
||||
export type DefaultServices =
|
||||
| Clock.Clock
|
||||
| Console.Console
|
||||
| Random.Random
|
||||
| ConfigProvider.ConfigProvider
|
||||
| Tracer.Tracer
|
||||
|
||||
/**
|
||||
* @since 2.0.0
|
||||
* @category constructors
|
||||
*/
|
||||
export const liveServices: Context.Context<DefaultServices> = internal.liveServices
|
||||
|
||||
/**
|
||||
* @since 2.0.0
|
||||
* @category fiberRefs
|
||||
*/
|
||||
export const currentServices: FiberRef.FiberRef<Context.Context<DefaultServices>> = internal.currentServices
|
||||
Loading…
Add table
Add a link
Reference in a new issue