Files
lettersoup-online/002_source/cms/src/db/billingAddress/Delete.tsx

7 lines
213 B
TypeScript

import { pb } from '@/lib/pb';
import { COL_STUDENTS, COL_USER_METAS } from '@/constants';
export async function deleteStudent(id: string): Promise<boolean> {
return pb.collection(COL_USER_METAS).delete(id);
}