UNPKG

@btc-vision/transaction

Version:

OPNet transaction library allows you to create and sign transactions for the OPNet network.

16 lines 677 B
/** * Polyfill for Symbol.dispose and Symbol.asyncDispose. * * ES2024 Explicit Resource Management defines these well-known symbols, * but Safari and Android WebView do not yet support them. This polyfill * creates globally-shared symbols via Symbol.for() so that classes can * implement [Symbol.dispose]() and [Symbol.asyncDispose]() today. * * When native support lands, the guards prevent the polyfill from running * and the native symbols are used transparently. * * NOTE: This file must be imported before any module that references * Symbol.dispose or Symbol.asyncDispose at the module-evaluation scope. */ export {}; //# sourceMappingURL=disposable.d.ts.map