mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
6 lines
91 B
TypeScript
6 lines
91 B
TypeScript
export type PushType = 'teacher' | 'student';
|
|
|
|
export interface Push {
|
|
type: PushType;
|
|
}
|