@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 466 B
TypeScript
import { Rectangle, Parameter } from "./../index";
export interface PositionFreeTextAnnotationInterface {
rectangle?: Rectangle;
}
export declare class PositionFreeTextAnnotation implements PositionFreeTextAnnotationInterface, Parameter {
rectangle?: Rectangle;
constructor(data: any);
static getRectangleDescription(): string;
static fromJson(data: any): PositionFreeTextAnnotation;
toJson(): any;
clone(): PositionFreeTextAnnotation;
}