@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 505 B
TypeScript
import { Parameter, Annotation } from "./../index";
export interface AnnotationsDocumentInterface {
annotation?: Array<Annotation>;
}
export declare class AnnotationsDocument implements AnnotationsDocumentInterface, Parameter {
annotation?: Array<Annotation>;
constructor(data: any);
static getAnnotationDefault(): Array<Annotation>;
static getAnnotationDescription(): string;
static fromJson(data: any): AnnotationsDocument;
toJson(): any;
clone(): AnnotationsDocument;
}