Signature
tsSignature
export type OutputRecord<B extends BehaviorRecord> = { [K in keyof B]: BehaviorOutput<B[K]>;};Imports
tsImport
import { OutputRecord } from "@/lib/flow/core/record";import { OutputRecord } from "@/lib/flow";Type Parameters
BBehavior record to inspect.
Related Symbols
BehaviorOutput
Extracts the output type from a behavior.
type
BehaviorRecord
Object map of named behaviors for `all`, `allSettled`, and `race`.
type
Source
tsflow/core/record.ts:60-62
export type OutputRecord<B extends BehaviorRecord> = { [K in keyof B]: BehaviorOutput<B[K]>;};