@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
13 lines (12 loc) • 500 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.
*
* @extends {WasmSupportApiBase}
*/
export declare class WasmSupportApiExtenal extends WasmSupportApiBase {
constructor(args?: any);
protected loadWasmModule(): Promise<IWasmModule>;
}