UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 388 B
import { Parameter } from "./../index"; export interface KeywordInterface { keyword?: string; } export declare class Keyword implements KeywordInterface, Parameter { keyword?: string; constructor(data: any); static getKeywordDefault(): string; static getKeywordDescription(): string; static fromJson(data: any): Keyword; toJson(): any; clone(): Keyword; }