mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
3 lines
130 B
TypeScript
3 lines
130 B
TypeScript
export function withUpdatedAt<T extends object>(data: T): T & { updatedAt: Date } {
|
|
return {...data, updatedAt: new Date()};
|
|
} |