4 lines
130 B
TypeScript
4 lines
130 B
TypeScript
import { Result as ResultFromPrisma } from 'db'
|
|
|
|
export type Result = Omit<ResultFromPrisma, 'createdAt'> & { createdAt: string }
|