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.
31 lines (30 loc) • 904 B
TypeScript
import { LockLevel } from "./LockLevel";
/**
* Result of {@link ILock.refreshLock} operation.
*/
export declare class RefreshLockResult {
/**
* Determines whether lock is isShared.
*/
level: LockLevel;
/**
* Indicates whether a lock is enforceable on the subtree.
*/
isDeep: boolean;
/**
* Gets/sets timeout.
*/
timeOut: number;
/**
* Gets/sets information about the principal taking out a lock.
*/
owner: string;
/**
* Initializes a new instance of the RefreshLockResult class.
* @param isDeep Indicates whether a lock is enforceable on the subtree.
* @param level Determines whether lock is shared.
* @param owner Principal taking out a lock.
* @param timeOut Timeout value.
*/
constructor(level: LockLevel, isDeep: boolean, timeOut: number, owner: string);
}