diff options
Diffstat (limited to 'src/fallback.ts')
-rw-r--r-- | src/fallback.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fallback.ts b/src/fallback.ts index 103c9db1d..964ed4e92 100644 --- a/src/fallback.ts +++ b/src/fallback.ts @@ -1,3 +1,4 @@ +declare var document: any; import { ByteBuffer } from "peechy"; import { FallbackStep } from "./api/schema"; import { @@ -7,7 +8,7 @@ import { function getFallbackInfo(): FallbackMessageContainer { const binary_string = globalThis.atob( - document.getElementById("__bunfallback").textContent.trim() + document.getElementById("__bunfallback").textContent.trim(), ); var len = binary_string.length; |