UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 564 B
import { Positions, Parameter, AnnotationRectangleRectangle, PositionsInterface } from "./../index"; export interface AnnotationRectangleInterface extends PositionsInterface { rectangle?: AnnotationRectangleRectangle; } export declare class AnnotationRectangle extends Positions implements AnnotationRectangleInterface, Parameter { rectangle?: AnnotationRectangleRectangle; constructor(data: any); static getRectangleDescription(): string; static fromJson(data: any): AnnotationRectangle; toJson(): any; clone(): AnnotationRectangle; }