UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 371 B
import { Parameter } from "./../index"; export interface AuthorInterface { name?: string; } export declare class Author implements AuthorInterface, Parameter { name?: string; constructor(data: any); static getNameDefault(): string; static getNameDescription(): string; static fromJson(data: any): Author; toJson(): any; clone(): Author; }