headplane/app/utils/res.ts
2025-01-06 08:19:40 +05:30

6 lines
137 B
TypeScript

import { data } from 'react-router';
export function send<T>(payload: T, init?: number | ResponseInit) {
return data(payload, init);
}