Genel bakış
typeCore Record

ErrorUnion

Unions the expected domain error types of every behavior in a record.

Signature

tsSignature
export type ErrorUnion<B extends BehaviorRecord> = BehaviorError<B[keyof B]>;

Imports

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

Type Parameters

B

Behavior record to inspect.

Source

tsflow/core/record.ts:69-69
export type ErrorUnion<B extends BehaviorRecord> = BehaviorError<B[keyof B]>;