summaryrefslogtreecommitdiff
path: root/tests/specs/run/fix_emittable_skipped/polyfill.ts
blob: 7af67c4c0320b3b2b5a10f5a7000232fcebf7d43 (plain)
1
2
3
4
5
6
7
8
declare global {
  const polyfill: () => void;
}

// deno-lint-ignore no-explicit-any
(globalThis as any).polyfill = () => {
  console.log("polyfill");
};