UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

16 lines (15 loc) 543 B
import { Parameter, EditComment, AddComment } from "./../index"; export interface CommentToolboxAnnotationInterface { add?: AddComment; edit?: EditComment; } export declare class CommentToolboxAnnotation implements CommentToolboxAnnotationInterface, Parameter { add?: AddComment; edit?: EditComment; constructor(data: any); static getAddDescription(): string; static getEditDescription(): string; static fromJson(data: any): CommentToolboxAnnotation; toJson(): any; clone(): CommentToolboxAnnotation; }