16 lines
338 B
TypeScript
16 lines
338 B
TypeScript
import { Bike, WearPart, MaintenanceHistory } from '@prisma/client'
|
|
|
|
export type WearPartWithHistory = WearPart & {
|
|
maintenanceHistory: MaintenanceHistory[]
|
|
bike: Bike
|
|
}
|
|
|
|
export type BikeWithParts = Bike & {
|
|
wearParts: WearPartWithHistory[]
|
|
}
|
|
|
|
export type MaintenanceHistoryWithPart = MaintenanceHistory & {
|
|
wearPart: WearPart
|
|
}
|
|
|