delete useless globals

This commit is contained in:
velzie 2024-07-13 22:24:12 -04:00
parent 4ce4226afa
commit 7f0663425a
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F
5 changed files with 30 additions and 31 deletions

View file

@ -15,8 +15,6 @@ import "./scope.ts";
declare global {
interface Window {
__location: Location;
__window: Window;
//@ts-ignore scope function cant be typed
__s: any;
}
@ -37,4 +35,4 @@ for (const script of scripts) {
script.insertAdjacentElement("afterend", clone);
script.remove();
}
}