hono 3.5.3 → 3.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -77,7 +77,7 @@ export interface OnHandlerInterface<E extends Env = Env, S extends Schema = {},
77
77
  declare type ExtractKey<S> = S extends Record<infer Key, unknown> ? Key extends string ? Key : never : string;
78
78
  export declare type ToSchema<M extends string, P extends string, I extends Input['in'], O> = {
79
79
  [K in P]: {
80
- [K2 in M as AddDollar<string & K2>]: {
80
+ [K2 in M as AddDollar<K2>]: {
81
81
  input: unknown extends I ? AddParam<{}, P> : AddParam<I, P>;
82
82
  output: unknown extends O ? {} : O;
83
83
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hono",
3
- "version": "3.5.3",
3
+ "version": "3.5.4",
4
4
  "description": "Ultrafast web framework for the Edges",
5
5
  "main": "dist/cjs/index.js",
6
6
  "type": "module",