Skip to main content
Version: v1

ISnapshotTreeWithBlobContents Interface

This is used when we rehydrate a container from the snapshot. Here we put the blob contents in separate property: blobContents. This is used as the ContainerContext's base snapshot when attaching.

Signature

export interface ISnapshotTreeWithBlobContents extends ISnapshotTree

Extends: ISnapshotTree

Properties

Property Type Description
blobsContents { [path: string]: ArrayBufferLike; }
trees { [path: string]: ISnapshotTreeWithBlobContents; }

Property Details

blobsContents

Signature

blobsContents: {
[path: string]: ArrayBufferLike;
};

Type: { [path: string]: ArrayBufferLike; }

trees

Signature

trees: {
[path: string]: ISnapshotTreeWithBlobContents;
};

Type: { [path: string]: ISnapshotTreeWithBlobContents; }