Hyperlinkv0.8.0-beta.28

HyperlinkConfigure

HyperlinkConfigure.ConfigPatchtypesrc/HyperlinkConfigure.ts:42
ConfigPatch<T>

Patch for a resource or process spec.

  • Partial object — shallow-merge fields; use a function value to replace a field.
  • effect field — a unary function (previous) => next updates the prior worker / supervised body; a multi-argument function value replaces effect outright (queue workers stay two-argument).
  • Full reducer(previous) => next over the whole spec (see configureLayer).
export type ConfigPatch<T> = PartialConfigPatch<T> | ((previous: T) => T);
Referenced by 10 symbols