rpc-client/dist/types.d.ts

13 lines
222 B
TypeScript
Raw Normal View History

2022-06-27 19:51:51 +00:00
export interface RPCRequest {
2022-08-18 23:20:23 +00:00
bypassCache: boolean;
chain: string;
query: string;
data: any;
2022-06-27 19:51:51 +00:00
}
export interface RPCResponse {
2022-08-18 23:20:23 +00:00
updated: number;
data: any;
error?: string;
2022-06-27 19:51:51 +00:00
}
2022-08-18 23:20:23 +00:00
//# sourceMappingURL=types.d.ts.map