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) 479 B
/** * Result of {@link ILock.lock} operation. */ export declare class LockResult { /** * Gets/sets lock token associated with the lock. */ token: string; /** * Gets/Sets timeout value */ timeOut: number; /** * Initializes a new instance of the LockResult class. * @param token Lock token associated with a lock. * @param timeOut Timeout value. */ constructor(token: string, timeOut: number); }