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