UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 580 B
import { SetOCGStateActionSetLayerState, ActionEvent, Parameter, ActionEventInterface } from "./../index"; export interface SetOCGStateActionInterface extends ActionEventInterface { setLayerState?: SetOCGStateActionSetLayerState; } export declare class SetOCGStateAction extends ActionEvent implements SetOCGStateActionInterface, Parameter { setLayerState?: SetOCGStateActionSetLayerState; constructor(data: any); static getSetLayerStateDescription(): string; static fromJson(data: any): SetOCGStateAction; toJson(): any; clone(): SetOCGStateAction; }