Files
angular-challenges/apps/projection/src/app/model/teacher.model.ts
2022-11-03 15:37:58 +01:00

16 lines
250 B
TypeScript

export const subject = [
'Sciences',
'History',
'English',
'Maths',
'Sport',
] as const;
export type Subject = typeof subject[number];
export interface Teacher {
id: number;
firstname: string;
lastname: string;
subject: Subject;
}