elysia 0.6.21 → 0.6.22

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.
@@ -502,10 +502,10 @@ export default class Elysia<BasePath extends string = '', Instance extends Elysi
502
502
  schema: Instance['schema'];
503
503
  meta: Instance['meta'];
504
504
  }>;
505
- decorate<const Decorators extends Record<string, unknown>>(name: Decorators): Elysia<BasePath, {
505
+ decorate<Decorators extends Record<string, unknown>>(name: Decorators): Elysia<BasePath, {
506
506
  store: Instance['store'];
507
507
  error: Instance['error'];
508
- request: Reconciliation<Instance['request'], DeepWritable<Decorators>>;
508
+ request: Reconciliation<Instance['request'], Decorators>;
509
509
  schema: Instance['schema'];
510
510
  meta: Instance['meta'];
511
511
  }>;