import '../utils/polyfills'; import './babel'; import * as types from '../types'; export interface moduleOption { /** * Link to wasm file. */ locateFile?: (file: string) => string; } /** * Initialize pag webassembly module. */ declare const PAGInit: (moduleOption?: moduleOption) => Promise; declare const clearCache: () => boolean; export { PAGInit, types, clearCache };