@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
18 lines (17 loc) • 640 B
TypeScript
import { IWasmModule } from "./IWasmModule";
import { WasmSupportApiBase } from "./WasmSupportApiBase";
export type WasmSupportApiOptions = {
wasmUrl?: string;
wasmBinary?: ArrayBuffer;
};
/**
* 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 WasmSupportApiExternal extends WasmSupportApiBase {
private options;
constructor(options?: WasmSupportApiOptions, ...args: any[]);
protected loadWasmModule(): Promise<IWasmModule>;
}