import { MigrationEntities } from "../../models"; export interface User { readonly userId: string; readonly label: string; } export interface Location { readonly locationId: string; readonly label: string; } export interface TestEntities extends MigrationEntities { readonly user: User; readonly location: Location; }