Files
portabase/src/db/utils/index.ts
T

3 lines
130 B
TypeScript
Raw Normal View History

export function withUpdatedAt<T extends object>(data: T): T & { updatedAt: Date } {
return {...data, updatedAt: new Date()};
}