import type { Site } from './site' export type Employee = { id: number firstName: string lastName: string site: Site displayOrder?: number }