EITS-web/node_modules/@sveltejs/adapter-node/ambient.d.ts
2025-12-06 09:54:52 -05:00

13 lines
248 B
TypeScript

import http from 'node:http';
declare global {
namespace App {
export interface Platform {
/**
* The original Node request object (https://nodejs.org/api/http.html#class-httpincomingmessage)
*/
req: http.IncomingMessage;
}
}
}