UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 586 B
import { Parameter } from "./../index"; export interface ClearToolboxAnnotationInterface { flatten?: boolean; pages?: string; } export declare class ClearToolboxAnnotation implements ClearToolboxAnnotationInterface, Parameter { flatten?: boolean; pages?: string; constructor(data: any); static getFlattenDefault(): boolean; static getFlattenDescription(): string; static getPagesDefault(): string; static getPagesDescription(): string; static fromJson(data: any): ClearToolboxAnnotation; toJson(): any; clone(): ClearToolboxAnnotation; }