UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 566 B
import { ImportDataActionImportSchema, ActionEvent, Parameter, ActionEventInterface } from "./../index"; export interface ImportDataActionInterface extends ActionEventInterface { importSchema?: ImportDataActionImportSchema; } export declare class ImportDataAction extends ActionEvent implements ImportDataActionInterface, Parameter { importSchema?: ImportDataActionImportSchema; constructor(data: any); static getImportSchemaDescription(): string; static fromJson(data: any): ImportDataAction; toJson(): any; clone(): ImportDataAction; }