UNPKG

asposewordscloud

Version:
40 lines (39 loc) 928 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapStorageFile: {}; /** * File or folder information. */ export declare class StorageFile implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * True if it is a folder. */ isFolder: boolean; /** * File or folder last modified DateTime. */ modifiedDate: Date; /** * File or folder name. */ name: string; /** * File or folder path. */ path: string; /** * File or folder size. */ size: number; constructor(init?: Partial<StorageFile>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }