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.
19 lines (18 loc) • 485 B
TypeScript
/**
* Encodes/Decodes url parts.
* @remarks This class shall be used to encode/decode parts of urls.
*/
export declare class EncodeUtil {
/**
* Encodes url part.
* @param part Url part to encode.
* @returns Encoded url part.
*/
static encodeUrlPart(part: string): string;
/**
* Decodes url part.
* @param part Url part to decode.
* @returns Decoded url part.
*/
static decodeUrlPart(part: string): string;
}