Properties
autocompleteError
autocompleteError: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:97unknown,ClientEventAutocompleteContext]
autocompleteFinish
autocompleteFinish: [ClientEventAutocompleteContext]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:98
autocompleteRun
autocompleteRun: [ClientEventAutocompleteContext]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:95
autocompleteSuccess
autocompleteSuccess: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:96ClientEventAutocompleteContext,unknown]
commandError
commandError: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:93unknown,ClientEventCommandContext]
commandFinish
commandFinish: [ClientEventCommandContext]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:94
commandMethodUnknown
commandMethodUnknown: [ClientEventCommandContext]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:90
commandNameMissing
commandNameMissing: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:88APIApplicationCommandAutocompleteInteraction,ServerResponse<IncomingMessage>]
commandNameUnknown
commandNameUnknown: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:89APIApplicationCommandAutocompleteInteraction|APIApplicationCommandInteraction,ServerResponse<IncomingMessage>]
commandRun
commandRun: [ClientEventCommandContext]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:91
commandSuccess
commandSuccess: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:92ClientEventCommandContext,unknown]
error
error: [unknown]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:74
hmrError
hmrError: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:141 Emitted when the Hot Module Reloader fails to load, reload, or unload the pieces of a file. The error is not rethrown: saving the file again retries the operation.unknown,string]
Since
3.3.0hmrPieceReloaded
hmrPieceReloaded: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:128 Emitted when the Hot Module Reloader reloads an already loaded piece after its file changed.Piece<PieceOptions, keyofStoreRegistryEntries>,string]
Since
3.3.0hmrPiecesLoaded
hmrPiecesLoaded: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:122 Emitted when the Hot Module Reloader loads the pieces of a newly created file.Piece<PieceOptions, keyofStoreRegistryEntries>[],string]
Since
3.3.0hmrPieceUnloaded
hmrPieceUnloaded: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:134 Emitted when the Hot Module Reloader unloads a piece after its file was deleted.Piece<PieceOptions, keyofStoreRegistryEntries>,string]
Since
3.3.0hmrStart
hmrStart: [string[]]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:110
Emitted when the Hot Module Reloader starts watching, with the list of watched store paths.
Since
3.3.0hmrStop
hmrStop: []Defined in: packages/http-framework/src/lib/ClientEvents.ts:116 Emitted when the Hot Module Reloader stops watching and all of its watchers have been closed.
Since
3.3.0interactionHandlerError
interactionHandlerError: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:103unknown,ClientEventInteractionHandlerContext]
interactionHandlerFinish
interactionHandlerFinish: [ClientEventInteractionHandlerContext]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:104
interactionHandlerNameInvalid
interactionHandlerNameInvalid: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:99APIMessageComponentInteraction|APIModalSubmitInteraction,ServerResponse<IncomingMessage>]
interactionHandlerNameUnknown
interactionHandlerNameUnknown: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:100APIMessageComponentInteraction|APIModalSubmitInteraction,ServerResponse<IncomingMessage>]
interactionHandlerRun
interactionHandlerRun: [ClientEventInteractionHandlerContext]
Defined in: packages/http-framework/src/lib/ClientEvents.ts:101
interactionHandlerSuccess
interactionHandlerSuccess: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:102ClientEventInteractionHandlerContext,unknown]
pluginLoaded
pluginLoaded: [Defined in: packages/http-framework/src/lib/ClientEvents.ts:87 Emitted after a plugin hook runs, providing the hook’s PluginHook and the plugin’s name (orPluginHook,string]
undefined when the registering plugin did not provide one).
Remarks
ThePreGenericsInitialization, PreInitialization, and PostInitialization hooks run
synchronously inside the Client constructor, so their emissions fire before new Client()
returns. A listener attached afterwards cannot observe them (not even one added by a subclass,
whose constructor body only runs after super() has already executed those hooks), so only the
PreLoad (during Client#load) and PostListen (during Client#listen) emissions are
observable. To react to the constructor-phase hooks, use the plugin hooks themselves.