Type Alias: LinkedStructureLookupResult<Value>
type LinkedStructureLookupResult<Value> =
| Readonly<{
found: false;
}>
| Readonly<{
found: true;
value: Value;
}>;
Defined in: _internal/cycle-safe-linked-search.ts:9
Result shape returned by linked-structure searches.
Type Parametersโ
Valueโ
Value