Initial commit - Event Planner application
This commit is contained in:
12
node_modules/@nestjs/common/file-stream/interfaces/streamable-handler-response.interface.d.ts
generated
vendored
Normal file
12
node_modules/@nestjs/common/file-stream/interfaces/streamable-handler-response.interface.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface StreamableHandlerResponse {
|
||||
/** `true` if the connection is destroyed, `false` otherwise. */
|
||||
destroyed: boolean;
|
||||
/** `true` if headers were sent, `false` otherwise. */
|
||||
headersSent: boolean;
|
||||
/** The status code that will be sent to the client when the headers get flushed. */
|
||||
statusCode: number;
|
||||
/** Sends the HTTP response. */
|
||||
send: (body: string) => void;
|
||||
/** Signals to the server that all of the response headers and body have been sent. */
|
||||
end: () => void;
|
||||
}
|
||||
Reference in New Issue
Block a user