Files
tsclass/ts/events/sessionevent.ts

5 lines
92 B
TypeScript
Raw Normal View History

2019-08-31 12:53:59 +02:00
export interface IEvent_Session {
userID: string;
2019-10-01 11:25:12 +02:00
sessionType: 'new' | 'reactivated';
2019-08-31 12:53:59 +02:00
}