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.

18 lines (17 loc) 468 B
/** * Level of lock. * @remarks * If a user sets an exclusive lock, other users will not be able to set any locks. If a user sets shared lock * other users will be able to set only shared lock on the item. There could be only 1 exclusive lock set on an * item or it can have 1 or more shared locks. */ export declare enum LockLevel { /** * Shared lock. */ shared = 0, /** * Exclusive lock. */ exclusive = 1 }