9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
export const AppEvents = {
|
|
UserRegistered: 'user.registered',
|
|
} as const;
|
|
|
|
export interface UserRegisteredEvent {
|
|
email: string;
|
|
verificationUrl: string;
|
|
}
|