Hyperlinkv0.8.0-beta.28

Stdio

Stdio.makeconsteffect/Stdio.ts:109
(options: Omit<Stdio, TypeId>): Stdio

Creates a Stdio service implementation from the provided fields and attaches the Stdio type identifier.

When to use

Use when you need to assemble a concrete Stdio service from command-line arguments and standard I/O implementations.

Details

The returned service reuses the supplied fields unchanged and only adds the Stdio type identifier; it does not create a Layer or provide defaults.

constructorslayerTest
Source effect/Stdio.ts:1094 lines
export const make = (options: Omit<Stdio, TypeId>): Stdio => ({
  [TypeId]: TypeId,
  ...options
})
Referenced by 1 symbols