kubo-rpc-client-esm-cjs
Version:
A client library for the Kubo RPC API
14 lines • 362 B
JavaScript
import { createLevel } from './level.js';
import { createLs } from './ls.js';
import { createTail } from './tail.js';
/**
* @param {import('../types').Options} config
*/
export function createLog(config) {
return {
level: createLevel(config),
ls: createLs(config),
tail: createTail(config)
};
}
//# sourceMappingURL=index.js.map