UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 745 B
import { Parameter } from "./../index"; export interface XmpNamespaceInterface { namespaceName?: string; namespacePrefix?: string; namespaceURI?: string; } export declare class XmpNamespace implements XmpNamespaceInterface, Parameter { namespaceName?: string; namespacePrefix?: string; namespaceURI?: string; constructor(data: any); static getNamespaceNameDefault(): string; static getNamespaceNameDescription(): string; static getNamespacePrefixDefault(): string; static getNamespacePrefixDescription(): string; static getNamespaceURIDefault(): string; static getNamespaceURIDescription(): string; static fromJson(data: any): XmpNamespace; toJson(): any; clone(): XmpNamespace; }