Skip to main content
Version: v1

FluidEditHandle Interface

FluidEditHandles are used to load edit chunks stored outside of the EditLog. Can be satisfied by IFluidHandle. Note that though this is in PersistedTypes, it isn't directly serializable (e.g. get is a function). Its serialization relies on being encoded via an IFluidSerializer.

Signature

export interface FluidEditHandle

Properties

Property Type Description
absolutePath string
get () => Promise<ArrayBuffer>

Property Details

absolutePath

Signature

readonly absolutePath: string;

Type: string

get

Signature

readonly get: () => Promise<ArrayBuffer>;

Type: () => Promise<ArrayBuffer>