UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 406 B
import { Parameter } from "./../index"; export interface ItemReferenceInterface { path?: string; } export declare class ItemReference implements ItemReferenceInterface, Parameter { path?: string; constructor(data: any); static getPathDefault(): string; static getPathDescription(): string; static fromJson(data: any): ItemReference; toJson(): any; clone(): ItemReference; }