5 lines
114 B
TypeScript
5 lines
114 B
TypeScript
export enum UserTokenType {
|
|
FORGOT_PASSWORD = 'forgot-password',
|
|
EMAIL_VERIFICATION = 'email-verification',
|
|
}
|