Hyperlinkv0.8.0-beta.28

DynamicConfig

DynamicConfig.ConfigFieldinterfacesrc/DynamicConfig.ts:74

A yieldable config field. yield* field reads its underlying Config through the ambient provider. Read-only on its own; SwappableField adds the control methods — so swappability is a structural distinction, not a stored marker flag.

export interface ConfigField<A>
  extends Effect.Effect<A, Config.ConfigError> {
  readonly [ConfigFieldTypeId]: ConfigFieldMeta;
  readonly config: Config.Config<A>;
}
Referenced by 6 symbols