UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 554 B
import { ActionEvent, GoTo3DViewActionGoTo3DView, Parameter, ActionEventInterface } from "./../index"; export interface GoTo3DViewActionInterface extends ActionEventInterface { goTo3DView?: GoTo3DViewActionGoTo3DView; } export declare class GoTo3DViewAction extends ActionEvent implements GoTo3DViewActionInterface, Parameter { goTo3DView?: GoTo3DViewActionGoTo3DView; constructor(data: any); static getGoTo3DViewDescription(): string; static fromJson(data: any): GoTo3DViewAction; toJson(): any; clone(): GoTo3DViewAction; }