Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 3x 3x | import { Teacher } from '../interfaces/teacher.interface';
export const mockTeacher: Teacher = {
id: 1,
lastName: 'Anna',
firstName: 'Perret',
createdAt: new Date('2025-01-25T14:00:00'),
updatedAt: new Date('2025-01-26T15:00:00')
};
export const mockTeachers: Teacher[] = [
{
id: 1,
lastName: 'Jean',
firstName: 'Dupont',
createdAt: new Date('2025-01-25T14:00:00'),
updatedAt: new Date('2025-01-26T15:00:00')
},
{
id: 2,
lastName: 'Thomas',
firstName: 'Martin',
createdAt: new Date('2025-01-25T14:00:00'),
updatedAt: new Date('2025-01-27T16:00:00')
},
{
id: 3,
lastName: 'Claire',
firstName: 'Beaumont',
createdAt: new Date('2025-01-25T14:00:00'),
updatedAt: new Date('2025-01-28T17:00:00')
}
]; |