1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/test/frontend/__fixtures__/machines.ts
2022-12-21 14:14:28 +01:00

23 lines
565 B
TypeScript

import { Machine } from '../../../app/frontend/src/javascript/models/machine';
const machines: Array<Machine> = [
{
id: 1,
name: 'Laser cutter',
description: 'EPILOG Legend 36EXT',
spec: 'Power: 40W, Working area: 914 x 609mm, Maximum material thickness: 305mm',
slug: 'laser-cutter',
disabled: false
},
{
id: 2,
name: '3D printer',
description: 'Ultimaker 2',
spec: 'Maximum working area: 210 x 210 x 220mm, Mechanical resolution: 0.02mm',
slug: '3d-printer',
disabled: false
}
];
export default machines;