Files
memecoin-botV2/.pnpm-store/v10/files/6f/8f8ffa88a325849e651361f6d58ab387e45942d53283c9570d75614e29ea9f880b2c1c7f70eb4d1ffc44c5abab506b87dacdad96c3139593a3a29ca0ee9e83

13 lines
637 B
Plaintext

import * as jayson from '../../../..';
type PromiseClientBrowserCallServerFunction = (request:string) => Promise<string>;
declare class PromiseClientBrowser {
constructor(callServer:PromiseClientBrowserCallServerFunction, options?:jayson.ClientOptions);
request(method:string, params:jayson.RequestParamsLike, id:jayson.JSONRPCIDLike | undefined, shouldCall:false): jayson.JSONRPCRequest;
request(method:string, params:jayson.RequestParamsLike, id?:jayson.JSONRPCIDLike): Promise<jayson.JSONRPCResultLike>;
request(method: Array<jayson.JSONRPCRequestLike>): Promise<jayson.JSONRPCResultLike>;
}
export = PromiseClientBrowser;