A leaf entry in the tree.

interface WordTreeEntry {
    documentName: string;
    entry: object | Document<object, DocumentConstructionContext>;
    pack?: string;
    uuid: string;
}

Properties

documentName: string

The document type.

entry: object | Document<object, DocumentConstructionContext>

An object that this entry represents.

pack?: string

The pack ID.

uuid: string

The document's UUID.