MCPcopy
hub / github.com/Effect-TS/effect / makeWithFallbackConfig

Function makeWithFallbackConfig

packages/cli/src/internal/args.ts:720–729  ·  view source on GitHub ↗
(
  args: Args.Args<A>,
  config: Config.Config<B>
)

Source from the content-addressed store, hash-verified

718}
719
720const makeWithFallbackConfig = <A, B>(
721 args: Args.Args<A>,
722 config: Config.Config<B>
723): Args.Args<A | B> => {
724 const op = Object.create(proto)
725 op._tag = "WithFallbackConfig"
726 op.args = args
727 op.config = config
728 return op
729}
730
731const makeVariadic = <A>(
732 args: Args.Args<A>,

Callers 2

args.tsFile · 0.85
withDescriptionInternalFunction · 0.85

Calls 1

createMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…