@mbakgun/n8n-nodes-slack-socket-mode
Version:
Slack Socket Mode Node for n8n that allows you to use +100 Slack events in your n8n instance with proxy mode
14 lines • 571 B
TypeScript
/// <reference types="node" />
import type { IncomingMessage } from 'node:http';
import type { ParamsDictionary } from 'express-serve-static-core';
export interface ParamsIncomingMessage extends IncomingMessage {
/**
* **Only valid for requests with path parameters.**
*
* The path parameters of the request. For example, if the request URL is
* `/users/123`, and the route definition is `/users/:id`
* then `request.params` will be `{ id: '123' }`.
*/
params?: ParamsDictionary;
}
//# sourceMappingURL=ParamsIncomingMessage.d.ts.map