feat(challenge 7): begin ngrx notification work

This commit is contained in:
thomas laforge
2022-11-22 22:25:27 +01:00
parent d774abf3b1
commit cc1c6e8b26
25 changed files with 596 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
export type PushType = 'teacher' | 'student';
export interface Push {
type: PushType;
}