UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 554 B
import { DestinationEvent, DestinationEventInterface, Parameter, ZoomDestinationZoomPage } from "./../index"; export interface ZoomDestinationInterface extends DestinationEventInterface { zoomPage?: ZoomDestinationZoomPage; } export declare class ZoomDestination extends DestinationEvent implements ZoomDestinationInterface, Parameter { zoomPage?: ZoomDestinationZoomPage; constructor(data: any); static getZoomPageDescription(): string; static fromJson(data: any): ZoomDestination; toJson(): any; clone(): ZoomDestination; }