mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
e9edc05bed
Fixes #8111
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
declare global {
|
|
const polyfill: () => void;
|
|
}
|
|
|
|
export {};
|
|
|
|
// deno-lint-ignore no-explicit-any
|
|
(globalThis as any).polyfill = () => {
|
|
console.log("polyfill");
|
|
};
|