@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
24 lines (23 loc) • 739 B
TypeScript
import { Parameter } from "./../index";
export interface AnnotationSelectionInterface {
index?: number;
name?: string;
page?: number;
}
export declare class AnnotationSelection implements AnnotationSelectionInterface, Parameter {
index?: number;
name?: string;
page?: number;
constructor(data: any);
static getIndexDefault(): number;
static getIndexDescription(): string;
static getIndexMin(): number;
static getNameDefault(): string;
static getNameDescription(): string;
static getPageDefault(): number;
static getPageDescription(): string;
static getPageMin(): number;
static fromJson(data: any): AnnotationSelection;
toJson(): any;
clone(): AnnotationSelection;
}