backend/src/lib/del.ts

7 lines
154 B
TypeScript

import { put } from './put';
export const del = async (id: string) => {
const content = { _deleted: true };
return await put(id, content, false);
};