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