UNPKG

ithit.webdav.server

Version:

With IT Hit WebDAV Server Engine for Node.js you can create your own WebDAV server, add WebDAV support to your existing Node.js project or DAV-enable your CMS/DMS/CRM.

20 lines (19 loc) 540 B
import { IHierarchyItem } from "../IHierarchyItem"; /** * @hidden * Represents result of paging. */ export declare class PageResult { /** * List of {@link IHierarchyItem} items. Each item represents a file or a folder item. */ items: IHierarchyItem[]; /** * Total number of items. */ totalNumber: number; /** * Initializes a new instance of the {@link PageResult} class with items and totalNumber. */ constructor(items: IHierarchyItem[], totalNumber: number); }