@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 562 B
TypeScript
import { ToolboxTranscribeTranscribe, BaseToolbox, BaseToolboxInterface, Parameter } from "./../index";
export interface ToolboxTranscribeInterface extends BaseToolboxInterface {
transcribe?: ToolboxTranscribeTranscribe;
}
export declare class ToolboxTranscribe extends BaseToolbox implements ToolboxTranscribeInterface, Parameter {
transcribe?: ToolboxTranscribeTranscribe;
constructor(data: any);
static getTranscribeDescription(): string;
static fromJson(data: any): ToolboxTranscribe;
toJson(): any;
clone(): ToolboxTranscribe;
}