libpag
Version:
Portable Animated Graphics
12 lines (9 loc) • 309 B
text/typescript
/* global globalThis */
import type { wx } from './interfaces';
declare const WXWebAssembly: typeof WebAssembly;
declare const wx: wx;
declare const globalThis: any;
globalThis.WebAssembly = WXWebAssembly;
globalThis.isWxWebAssembly = true;
// eslint-disable-next-line no-global-assign
window = globalThis;