Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions http/_types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Copyright 2018-2026 the Deno authors. MIT license.

/**
* Proxy type of {@code Uint8Array<ArrayBuffer>} or {@code Uint8Array} in TypeScript 5.7 or below respectively.
*
* This type is internal utility type and should not be used directly.
*
* @internal @private
*/

export type Uint8Array_ = ReturnType<Uint8Array["slice"]>;
3 changes: 2 additions & 1 deletion http/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"./unstable-structured-fields": "./unstable_structured_fields.ts",
"./user-agent": "./user_agent.ts",
"./unstable-route": "./unstable_route.ts",
"./unstable-cache-control": "./unstable_cache_control.ts"
"./unstable-cache-control": "./unstable_cache_control.ts",
"./unstable-message-signatures": "./unstable_message_signatures.ts"
}
}
Loading
Loading