@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 562 B
TypeScript
import { BaseToolbox, ToolboxAnnotationAnnotation, BaseToolboxInterface, Parameter } from "./../index";
export interface ToolboxAnnotationInterface extends BaseToolboxInterface {
annotation?: ToolboxAnnotationAnnotation;
}
export declare class ToolboxAnnotation extends BaseToolbox implements ToolboxAnnotationInterface, Parameter {
annotation?: ToolboxAnnotationAnnotation;
constructor(data: any);
static getAnnotationDescription(): string;
static fromJson(data: any): ToolboxAnnotation;
toJson(): any;
clone(): ToolboxAnnotation;
}