The object store folder descriptor interface.

interface IFolderDescriptor {
    entries?: ObjectDescriptor[];
    kind: Folder;
    name: string;
    path: string;
    pathName: string;
}

Properties

entries?: ObjectDescriptor[]

The folder entries.

kind: Folder

The object kind.

name: string

The name of the folder.

path: string

The path of the folder.

pathName: string

The path name of the folder (a combination of the path and the name).

Generated using TypeDoc