Skip to content

IListEntry

Steve edited this page Apr 29, 2020 · 1 revision
export interface IListEntry {
    _listData: IListData,
    id?: number,
    src: string, // file name
    path: string, // full path of the file
    size: number, // in bytes
    width: number, // in px
    height: number, // in px
    lastModified: number, // unix time stamp
    type: ListEntryType,
    importStatus?: ImportStatus,
    metaData?: IMetaData,
    connectorType?: string
}
Clone this wiki locally