UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 560 B
import { GoToDestinationActionGoTo, ActionEvent, Parameter, ActionEventInterface } from "./../index"; export interface GoToDestinationActionInterface extends ActionEventInterface { _goTo?: GoToDestinationActionGoTo; } export declare class GoToDestinationAction extends ActionEvent implements GoToDestinationActionInterface, Parameter { _goTo?: GoToDestinationActionGoTo; constructor(data: any); static getGoToDescription(): string; static fromJson(data: any): GoToDestinationAction; toJson(): any; clone(): GoToDestinationAction; }