import { Item } from '../delegate'; import { FindWhereArgs, SelectArgs } from './Find'; export type UpsertArgs = { select?: SelectArgs | null; include?: Record | null; where: FindWhereArgs; create: Item; update: Item; };