@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 530 B
TypeScript
import { ActionEvent, Parameter, ActionEventInterface, HideActionHideAnnotation } from "./../index";
export interface HideActionInterface extends ActionEventInterface {
hideAnnotation?: HideActionHideAnnotation;
}
export declare class HideAction extends ActionEvent implements HideActionInterface, Parameter {
hideAnnotation?: HideActionHideAnnotation;
constructor(data: any);
static getHideAnnotationDescription(): string;
static fromJson(data: any): HideAction;
toJson(): any;
clone(): HideAction;
}