2
0
Files
bot/packages/models/src/result.ts

4 lines
130 B
TypeScript
Raw Normal View History

import { Result as ResultFromPrisma } from 'db'
2021-12-30 10:24:16 +01:00
export type Result = Omit<ResultFromPrisma, 'createdAt'> & { createdAt: string }