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.
|
|
|
|
|
*/
|
2022-01-26 19:37:54 -06:00
|
|
|
export class UserFlushedEvent extends AuthenticationEvent {
|
|
|
|
|
public readonly eventName = '@extollo/lib:UserFlushedEvent'
|
|
|
|
|
}
|