Interface EntryCommon

common properties shared by collections and documents

interface EntryCommon {
    hash: string;
    id: string;
    lastModified: string;
    parent?: string;
    pinned: boolean;
    tags?: Tag[];
    visibleName: string;
}

Hierarchy (view full)

Properties

hash: string

the current hash of the state of this entry

id: string

the document id, a uuid4

lastModified: string

the last modified timestamp

parent?: string

the parent of this entry

There are two special parents, "" (empty string) for the root directory, and "trash" for the trash

pinned: boolean

true if the entry is starred in most ui elements

tags?: Tag[]

any tags the entry might have

visibleName: string

the visible display name of this entry