This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
libkernel-universal/dist/index.d.ts

44 lines
1.9 KiB
TypeScript

type callModule = typeof import("libkmodule").callModule;
type connectModule = typeof import("libkmodule").connectModule;
type logErr = typeof import("libkmodule").logErr;
type log = typeof import("libkmodule").log;
import type { ErrTuple, DataFn } from "@siaweb/libweb";
import EventEmitter from "eventemitter2";
type callModuleBound = (method: string, data?: any) => Promise<ErrTuple>;
type connectModuleBound = (method: string, data: any, receiveUpdate: DataFn) => [sendUpdate: DataFn, response: Promise<ErrTuple>];
declare let callModule: callModule;
declare let connectModule: connectModule;
declare let log: log;
declare let logErr: logErr;
export interface ModuleBag {
callModule: callModule;
connectModule: connectModule;
log: log;
logErr: logErr;
}
export interface ModuleBagBound extends ModuleBag {
callModule: callModuleBound;
connectModule: connectModuleBound;
}
export declare abstract class Client extends EventEmitter {
private _callModule?;
get callModule(): callModuleBound;
private _log?;
get log(): log;
private _logErr?;
get logErr(): logErr;
private _connectModule?;
get connectModule(): connectModuleBound;
loadLibs(module: string): Promise<void>;
loadBound(module: string): Promise<ModuleBagBound>;
protected handleError(ret: ErrTuple): void;
protected handleErrorOrReturn(ret: ErrTuple): any;
protected callModuleReturn(method: string, data?: any): Promise<any>;
}
export declare function load(module?: string): Promise<ModuleBag | ModuleBagBound>;
type ClientConstructor<U> = new (...args: any[]) => U;
export declare const factory: <T extends Client = Client>(type: ClientConstructor<T>, module: string) => (...args: any) => T;
export declare function maybeGetAsyncProperty(object: any): Promise<any>;
export declare function isPromise(obj: Promise<any>): boolean;
export {};
//# sourceMappingURL=index.d.ts.map