Skip to content

Commit f318978

Browse files
feat(http/unstable): add RFC 9421 message signatures (#7039)
1 parent 65e6547 commit f318978

4 files changed

Lines changed: 2601 additions & 1 deletion

File tree

http/_types.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright 2018-2026 the Deno authors. MIT license.
2+
3+
/**
4+
* Proxy type of {@code Uint8Array<ArrayBuffer>} or {@code Uint8Array} in TypeScript 5.7 or below respectively.
5+
*
6+
* This type is internal utility type and should not be used directly.
7+
*
8+
* @internal @private
9+
*/
10+
11+
export type Uint8Array_ = ReturnType<Uint8Array["slice"]>;

http/deno.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"./unstable-structured-fields": "./unstable_structured_fields.ts",
2121
"./user-agent": "./user_agent.ts",
2222
"./unstable-route": "./unstable_route.ts",
23-
"./unstable-cache-control": "./unstable_cache_control.ts"
23+
"./unstable-cache-control": "./unstable_cache_control.ts",
24+
"./unstable-message-signatures": "./unstable_message_signatures.ts"
2425
}
2526
}

0 commit comments

Comments
 (0)