Changes from Github AI
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import { Bike, WearPart, MaintenanceHistory } from '@prisma/client'
|
||||
|
||||
export type BikeWithParts = Bike & {
|
||||
wearParts: WearPart[]
|
||||
}
|
||||
|
||||
export type WearPartWithHistory = WearPart & {
|
||||
maintenanceHistory: MaintenanceHistory[]
|
||||
bike: Bike
|
||||
}
|
||||
|
||||
export type BikeWithParts = Bike & {
|
||||
wearParts: WearPartWithHistory[]
|
||||
}
|
||||
|
||||
export type MaintenanceHistoryWithPart = MaintenanceHistory & {
|
||||
wearPart: WearPart
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user