UNPKG

@modulae.systems/rpc-client

Version:
4 lines (3 loc) 280 B
import { RpcResponseModel } from "./types"; export declare function callPublicMethod(url: string, method: string, data: any): Promise<RpcResponseModel>; export declare function callProtectedMethod(url: string, method: string, data: any, token: string): Promise<RpcResponseModel>;