@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
14 lines (13 loc) • 547 B
TypeScript
import { IWasmModule } from "./IWasmModule";
import { WasmSupportApiBase } from "./WasmSupportApiBase";
/**
* Implementation of the SupportApi interface using WebAssembly (Wasm) technology.
* This class provides the functionality to interact with Support API services through WebAssembly.
* DsPdf.wasm is embedded into the script file.
*
* @extends {WasmSupportApiBase}
*/
export declare class WasmSupportApiEmbed extends WasmSupportApiBase {
constructor(args?: any);
protected loadWasmModule(): Promise<IWasmModule>;
}