9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
|
import bls from "./index"
|
||
|
|
||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
// @ts-ignore
|
||
|
(function (window: any) {
|
||
|
window.bls = bls
|
||
|
// @ts-ignore
|
||
|
})(window);
|