properly rewrite postmessage

This commit is contained in:
velzie 2024-07-28 14:41:44 -04:00
parent 34c3cc5094
commit c2d147442e
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F
9 changed files with 134 additions and 17 deletions

2
src/global.d.ts vendored
View file

@ -4,3 +4,5 @@ declare const dbg: {
error: (message: string, ...args: any[]) => void;
debug: (message: string, ...args: any[]) => void;
};
declare type Self = Window & typeof globalThis;