@@ -5010,13 +5010,9 @@ export default class Elysia<
50105010 private _use (
50115011 plugin : AnyElysia | ( ( app : AnyElysia ) => MaybePromise < AnyElysia > )
50125012 ) {
5013- console . log ( "1" , plugin . toString ( ) )
5014-
50155013 if ( typeof plugin === 'function' ) {
50165014 const instance = plugin ( this as unknown as any ) as unknown as any
50175015
5018- console . log ( "2" )
5019-
50205016 if ( instance instanceof Promise ) {
50215017 this . promisedModules . add (
50225018 instance
@@ -5644,20 +5640,20 @@ export default class Elysia<
56445640 MergeSchema <
56455641 Volatile [ 'schema' ] ,
56465642 MergeSchema < Ephemeral [ 'schema' ] , Metadata [ 'schema' ] >
5647- > &
5648- Metadata [ 'standaloneSchema' ] &
5649- Ephemeral [ 'standaloneSchema' ] &
5650- Volatile [ 'standaloneSchema' ]
5651- > ,
5643+ >
5644+ > &
5645+ Metadata [ 'standaloneSchema' ] &
5646+ Ephemeral [ 'standaloneSchema' ] &
5647+ Volatile [ 'standaloneSchema' ] ,
5648+ const Decorator extends Singleton & {
5649+ derive : Ephemeral [ 'derive' ] & Volatile [ 'derive' ]
5650+ resolve : Ephemeral [ 'resolve' ] & Volatile [ 'resolve' ]
5651+ } ,
56525652 const MacroContext extends MacroToContext <
56535653 Metadata [ 'macroFn' ] ,
56545654 Omit < Input , NonResolvableMacroKey > ,
56555655 Definitions [ 'typebox' ]
56565656 > ,
5657- const Decorator extends Singleton & {
5658- derive : Ephemeral [ 'derive' ] & Volatile [ 'derive' ]
5659- resolve : Ephemeral [ 'resolve' ] & Volatile [ 'resolve' ]
5660- } ,
56615657 const Handle extends InlineHandler <
56625658 NoInfer < Schema > ,
56635659 Decorator ,
0 commit comments