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.

24 lines (23 loc) 570 B
import { PropertyName } from "./PropertyName"; /** * @copyright Copyright (c) 2017 IT Hit. All rights reserved. */ /** * Describes one property associated with hierarchy item object. */ export declare class PropertyValue { /** * Name of the property */ qualifiedName: PropertyName; /** * The value of the property */ value: string; /** * Initializes new instance. * @param name Property name. * @param value Property value. */ constructor(name?: PropertyName, value?: string); }