@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
18 lines (17 loc) • 533 B
TypeScript
import { Parameter } from "./../index";
export interface AnnotationPointPointInterface {
x?: number;
y?: number;
}
export declare class AnnotationPointPoint implements AnnotationPointPointInterface, Parameter {
x?: number;
y?: number;
constructor(data: any);
static getXDefault(): number;
static getXDescription(): string;
static getYDefault(): number;
static getYDescription(): string;
static fromJson(data: any): AnnotationPointPoint;
toJson(): any;
clone(): AnnotationPointPoint;
}