Type Alias: TimeoutSources
Makaio Framework / utils / TimeoutSources
Type Alias: TimeoutSources
Section titled “Type Alias: TimeoutSources”TimeoutSources =
Record<TimeoutCategory, {layer:TimeoutLayer;source:string; }>
Defined in: ../../../packages/utils/src/timeout/types.ts:27
Provenance tracking: which layer set each timeout value.
Type Composition
Section titled “Type Composition”TimeoutSourcesRecord<TimeoutCategory, { layer: TimeoutLayer; source: string }>TimeoutCategory'initialization' | 'acknowledgement' | 'completion' | 'toolApproval' | 'eventWait''initialization''acknowledgement''completion''toolApproval''eventWait'
{ layer: TimeoutLayer; source: string }
Resolved Shape
Section titled “Resolved Shape”type TimeoutSources = { initialization: { layer: TimeoutLayer; source: string; }; acknowledgement: { layer: TimeoutLayer; source: string; }; completion: { layer: TimeoutLayer; source: string; }; toolApproval: { layer: TimeoutLayer; source: string; }; eventWait: { layer: TimeoutLayer; source: string; };};