22 lines
572 B
TypeScript
22 lines
572 B
TypeScript
import RpcNetwork from "../network.js";
|
|
import { RPCRequest } from "@lumeweb/relay-types";
|
|
import { RpcQueryOptions } from "../types.js";
|
|
import SimpleRpcQuery from "./simple.js";
|
|
export default class ClearCacheRpcQuery extends SimpleRpcQuery {
|
|
protected _relays: string[];
|
|
constructor({
|
|
network,
|
|
relays,
|
|
query,
|
|
options,
|
|
}: {
|
|
network: RpcNetwork;
|
|
relays: string[];
|
|
query: RPCRequest;
|
|
options: RpcQueryOptions;
|
|
});
|
|
protected _run(): Promise<void>;
|
|
protected queryRelay(): Promise<any>;
|
|
}
|
|
//# sourceMappingURL=clearCache.d.ts.map
|