created HttpRequest

This commit is contained in:
2025-08-16 23:47:55 -04:00
parent 8a7cf7bb1c
commit 2bc62eed01
6 changed files with 107 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
export default function assertUnreachable(x: never): never {
throw new Error(`Unreachable code: ${x}`);
}