UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 522 B
import { ActionEvent, Parameter, ActionEventInterface, ThreadActionGoToThread } from "./../index"; export interface ThreadActionInterface extends ActionEventInterface { goToThread?: ThreadActionGoToThread; } export declare class ThreadAction extends ActionEvent implements ThreadActionInterface, Parameter { goToThread?: ThreadActionGoToThread; constructor(data: any); static getGoToThreadDescription(): string; static fromJson(data: any): ThreadAction; toJson(): any; clone(): ThreadAction; }