Files
angular-challenges/apps/ngrx-notification/src/app/model/push.model.ts
2022-11-22 22:25:27 +01:00

6 lines
91 B
TypeScript

export type PushType = 'teacher' | 'student';
export interface Push {
type: PushType;
}