summaryrefslogtreecommitdiff
path: root/u/server/request/index.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-27 18:50:33 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-27 19:31:06 -0700
commit7aa11b7a8abacf81dec20fff21216df35d333756 (patch)
tree40f6a76c37412cf1c5a67f99a4ee30e3aae863c9 /u/server/request/index.ts
parente4df72cd446270cf867ec308995a05e21b3aa601 (diff)
downloadci-7aa11b7a8abacf81dec20fff21216df35d333756.tar.gz
ci-7aa11b7a8abacf81dec20fff21216df35d333756.zip
Pulls in pengueno from npm
Diffstat (limited to 'u/server/request/index.ts')
-rw-r--r--u/server/request/index.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/u/server/request/index.ts b/u/server/request/index.ts
deleted file mode 100644
index 41d59b7..0000000
--- a/u/server/request/index.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import { HttpMethod } from '@emprespresso/pengueno';
-
-export interface BaseRequest {
- url: string;
- method: HttpMethod;
-
- header(): Record<string, string>;
-
- formData(): Promise<FormData>;
- json(): Promise<unknown>;
- text(): Promise<string>;
-
- param(key: string): string | undefined;
- query(): Record<string, string>;
- queries(): Record<string, string[]>;
-}
-
-export * from './pengueno.js';