import { Duck } from "./models"; export const DUCKS: Duck[] = [ { id: 1, color: 'yellow' }, { id: 2, color: 'blue' }, { id: 3, color: 'pink' } ];