UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 508 B
import { AnnotationPointPoint, Positions, Parameter, PositionsInterface } from "./../index"; export interface AnnotationPointInterface extends PositionsInterface { point?: AnnotationPointPoint; } export declare class AnnotationPoint extends Positions implements AnnotationPointInterface, Parameter { point?: AnnotationPointPoint; constructor(data: any); static getPointDescription(): string; static fromJson(data: any): AnnotationPoint; toJson(): any; clone(): AnnotationPoint; }