aimpress-chatbot/node_modules/botbuilder/lib/interfaces/response.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

14 lines
No EOL
519 B
TypeScript

/**
* Represents a Node.js HTTP Response, including the minimal set of use properties and methods.
* Compatible with Restify, Express, and Node.js core http.
*/
import * as z from 'zod';
export interface Response {
socket: unknown;
end(...args: unknown[]): unknown;
header(name: string, value: unknown): unknown;
send(...args: unknown[]): unknown;
status(code: number): unknown;
}
export declare const ResponseT: z.ZodType<Response, z.ZodTypeDef, Response>;
//# sourceMappingURL=response.d.ts.map