Auth Service Utils interface

interface IAuthServiceUtils {
    getUserEmailFromToken(token: string): Promise<string>;
}

Implemented by

Methods