Files
lib/src/auth/event/UserFlushedEvent.ts

9 lines
240 B
TypeScript
Raw Normal View History

2021-11-26 14:32:25 -06:00
import {AuthenticationEvent} from './AuthenticationEvent'
2021-06-05 12:02:36 -05:00
/**
* Event fired when a user is unauthenticated.
*/
export class UserFlushedEvent extends AuthenticationEvent {
public readonly eventName = '@extollo/lib:UserFlushedEvent'
}