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