UNPKG

orb-billing

Version:

The official TypeScript library for the Orb API

18 lines (16 loc) 440 B
/** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ const shims = require('./registry'); const auto = require('orb-billing/_shims/auto/runtime'); exports.init = () => { if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true }); }; for (const property of Object.keys(shims)) { Object.defineProperty(exports, property, { get() { return shims[property]; }, }); } exports.init();