headplane/app/utils/res.ts
2024-12-06 11:58:17 -05:00

6 lines
138 B
TypeScript

import { data } from '@remix-run/node'
export function send<T>(payload: T, init?: number | ResponseInit) {
return data(payload, init)
}