@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 473 B
TypeScript
import { Parameter } from "./../index";
export interface ObjectKeySelectionAnnotationInterface {
id?: string;
}
export declare class ObjectKeySelectionAnnotation implements ObjectKeySelectionAnnotationInterface, Parameter {
id?: string;
constructor(data: any);
static getIdDefault(): string;
static getIdDescription(): string;
static fromJson(data: any): ObjectKeySelectionAnnotation;
toJson(): any;
clone(): ObjectKeySelectionAnnotation;
}