UNPKG

@mescius/dspdfviewer

Version:
14 lines (13 loc) 547 B
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>; }