API reference › @evolu/common › Result › InferDone
type InferDone<R> =
InferErr<R> extends infer Errors
? Errors extends Done<infer D>
? D
: never
: never;
Defined in: packages/common/src/Result.ts:517
Extracts the done value type from a NextResult.