import * as fixtures_dir from './directory.json'; import * as fixtures_project_tracking from './projectTracking.json'; import * as fixture_employee_10 from './employee10.json'; import * as fixture_employee_22 from './employee22.json'; import * as fixture_employee_44 from './employee44.json'; import * as fixture_employee_60 from './employee60.json'; const fixtures = { directory: fixtures_dir, employees: { "10": fixture_employee_10, "22": fixture_employee_22, "44": fixture_employee_44, "60": fixture_employee_60, }, projectTracking: { "all": fixtures_project_tracking, "10": Array((fixtures_project_tracking as any)[0]), "22": Array((fixtures_project_tracking as any)[1]), "44": Array((fixtures_project_tracking as any)[2]), "60": [] } }; export { fixtures };