@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 498 B
TypeScript
import { URIActionResolveURI, ActionEvent, Parameter, ActionEventInterface } from "./../index";
export interface URIActionInterface extends ActionEventInterface {
resolveURI?: URIActionResolveURI;
}
export declare class URIAction extends ActionEvent implements URIActionInterface, Parameter {
resolveURI?: URIActionResolveURI;
constructor(data: any);
static getResolveURIDescription(): string;
static fromJson(data: any): URIAction;
toJson(): any;
clone(): URIAction;
}