Overview
typeCore Record

OutputRecord

Maps each behavior key to its successful output type.

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

B

Behavior record to inspect.

Source

tsflow/core/record.ts:60-62
export type OutputRecord<B extends BehaviorRecord> = {
[K in keyof B]: BehaviorOutput<B[K]>;
};