Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Apr 4, 2024
1 parent 446ed44 commit 0302417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/dispatcher.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ declare namespace Dispatcher {
/** Invoked before response is starting to be processed */
onResponseStart?(controller: Controller): void;
/** Invoked after status headers data has been received */
onResponseHeaders?(headers: Record<string, string>): void;
onResponseHeaders?(headers: Record<string, string>, statusCode: number, statusText: string?): void;
/** Invoked after response payload data is received. */
onResponseData?(chunk: Buffer | string): void;
/** Invoked after response has finished */
Expand Down

0 comments on commit 0302417

Please sign in to comment.