7 lines
170 B
JavaScript
7 lines
170 B
JavaScript
|
import { bls } from "./index.js";
|
||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
(function (window) {
|
||
|
window.bls = bls;
|
||
|
// @ts-ignore
|
||
|
})(window);
|