lib/src/auth/event/UserAuthenticatedEvent.ts

9 lines
250 B
TypeScript
Raw Normal View History

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