API reference@evolu/commonResult › Done

Defined in: packages/common/src/Result.ts:472

A signal indicating normal completion of a pull-based protocol.

This is not a failure — it is a control signal that carries an optional "done" value (often void, but can be a final summary or leftover).

Inspired by JavaScript's IteratorResult where { done: true } signals completion.

Extends

Properties

done

readonly done: D;

Defined in: packages/common/src/Result.ts:473


type

readonly type: "Done";

Defined in: packages/common/src/Type.ts:3492

Inherited from

Typed.type