mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
import type { Response } from "express";
|
|
|
|
|
|
export function sendJson(res: Response, status: number, data: Record<string, any>): void {
|
|
res.status(status).json(data);
|
|
} |