Genel bakış
typeCore Record

RecordInput

Intersects the input types of every behavior in a record.

Signature

tsSignature
export type RecordInput<B extends BehaviorRecord> = UnionToIntersection<BehaviorInput<B[keyof B]>>;

Imports

tsImport
import { RecordInput } from "@/lib/flow/core/record";
import { RecordInput } from "@/lib/flow";

Type Parameters

B

Behavior record to inspect.

Source

tsflow/core/record.ts:43-43
export type RecordInput<B extends BehaviorRecord> = UnionToIntersection<BehaviorInput<B[keyof B]>>;