UNPKG

botframework-streaming

Version:

Streaming library for the Microsoft Bot Framework

27 lines (24 loc) 644 B
/** * @module botframework-streaming */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents a IncomingMessage from the `http` module in Node.js. * * This interface supports the framework and is not intended to be called directly for your code. */ export interface INodeIncomingMessage { /** * Optional. The request headers. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any headers?: any; /** * Optional. The request method. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any method?: any; }