import type { CommandModule } from './command_module'; /** * A dynamically-loaded package that contains one or more JavaScript/WebAssembly CommandModules. * May correspond to an emscripten-forge package. */ export declare class CommandPackage { readonly name: string; readonly version: string; readonly build_string: string; readonly channel: string; readonly platform: string; readonly wasm: boolean; readonly modules: CommandModule[]; constructor(name: string, version: string, build_string: string, channel: string, // channel (emscripten-forge package) or local directory. platform: string, wasm: boolean, modules: CommandModule[]); }