Genel bakış
typeCore Record

RaceOutput

Keyed success value returned by `race`.

Signature

tsSignature
export type RaceOutput<B extends BehaviorRecord> = {
[K in keyof B]: {
key: K;
value: BehaviorOutput<B[K]>;
};
}[keyof B];

Imports

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

Type Parameters

B

Behavior record to inspect.

Source

tsflow/core/record.ts:88-93
export type RaceOutput<B extends BehaviorRecord> = {
[K in keyof B]: {
key: K;
value: BehaviorOutput<B[K]>;
};
}[keyof B];