kubo-rpc-client
Version:
A client library for the Kubo RPC API
11 lines • 327 B
JavaScript
import { createCancel } from "./cancel.js";
import { createState } from "./state.js";
import { createSubs } from "./subs.js";
export function createPubsub(client) {
return {
cancel: createCancel(client),
state: createState(client),
subs: createSubs(client)
};
}
//# sourceMappingURL=index.js.map