import { Customer, Cylinder } from '../entitites'; export interface IKey { id: string; name: string; nr: string; handedOut: boolean; cylinder: Cylinder; customer: Customer; createdAt: Date; }