UNPKG

@maskedeng-tom/ssrsx

Version:
14 lines (13 loc) 338 B
import { HttpServer } from '../types'; interface SendData { status: number; type: string; body: unknown; serviceStart: Date; lastModified?: Date; source?: string; errorLog?: boolean; redirect?: boolean; } declare const sendData: (server: HttpServer, data: SendData) => void; export { sendData, SendData };