aimpress-chatbot/node_modules/botbuilder/lib/interfaces/request.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

10 lines
No EOL
452 B
TypeScript

/**
* Represents a Node.js HTTP Request, including the minimal set of use properties.
* Compatible with Restify, Express, and Node.js core http.
*/
export interface Request<Body extends Record<string, unknown> = Record<string, unknown>, Headers extends Record<string, string[] | string | undefined> = Record<string, string[] | string | undefined>> {
body?: Body;
headers: Headers;
method?: string;
}
//# sourceMappingURL=request.d.ts.map