EditHandle Interface
EditHandles are used to load edit chunks stored outside of the EditLog. This is typically implemented by a wrapper around an IFluidHandle.
Signature
export interface EditHandle<TChange>
Type Parameters
Parameter | Description |
---|---|
TChange |
Properties
Property | Type | Description |
---|---|---|
baseHandle | FluidEditHandle | |
get | () => Promise<EditWithoutId<TChange>[]> |
Property Details
baseHandle
Signature
readonly baseHandle: FluidEditHandle;
Type: FluidEditHandle
get
Signature
readonly get: () => Promise<EditWithoutId<TChange>[]>;
Type: () => Promise<EditWithoutId<TChange>[]>