elysia 0.6.12 → 0.6.13

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.
@@ -246,7 +246,6 @@ export default class Elysia<BasePath extends string = '', Instance extends Elysi
246
246
  meta: Record<'defs', Instance['meta']['defs']> & Record<'exposed', Instance['meta']['exposed']> & Record<'schema', Prettify<Instance['meta']['schema'] & (MergeSchema<Schema, Instance['schema']> extends infer Typed extends TypedSchema ? {
247
247
  [path in `${BasePath}${Path}`]: {
248
248
  post: {
249
- handler?: Handler;
250
249
  body: UnwrapSchema<Typed['body'], Instance['meta']['defs']>;
251
250
  headers: UnwrapSchema<Typed['headers'], Instance['meta']['defs']> extends infer Result ? Result extends Record<string, any> ? Result : undefined : undefined;
252
251
  query: UnwrapSchema<Typed['query'], Instance['meta']['defs']> extends infer Result ? Result extends Record<string, any> ? Result : undefined : undefined;