UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 685 B
import { Parameter, AnnotationSelection } from "./../index"; export interface HideActionHideAnnotationInterface { annotation?: Array<AnnotationSelection>; hide?: boolean; } export declare class HideActionHideAnnotation implements HideActionHideAnnotationInterface, Parameter { annotation?: Array<AnnotationSelection>; hide?: boolean; constructor(data: any); static getAnnotationDefault(): Array<AnnotationSelection>; static getAnnotationDescription(): string; static getHideDefault(): boolean; static getHideDescription(): string; static fromJson(data: any): HideActionHideAnnotation; toJson(): any; clone(): HideActionHideAnnotation; }