export type SendReturnResult = { result: any } export type SendReturn = any export type Send = (method: string, params?: any[]) => Promise export type SendOld = ({ method }: { method: string }) => Promise