import type { Aircraft } from '../../src/types' // Three aircraft with one default, per `seed_aircraft` in test-data.md. export const seedAircraft: Aircraft[] = [ { id: 'aircraft-1', model: 'Bayraktar TB2', type: 'Plane', isDefault: true }, { id: 'aircraft-2', model: 'DJI Mavic 3', type: 'Copter', isDefault: false }, { id: 'aircraft-3', model: 'Leleka-100', type: 'Plane', isDefault: false }, ]