auth.provider API
    Preparing search index...
    interface UserRepository {
        authenticate(username: string, password: string): Promise<User | null>;
        authenticateByToken(token: string): Promise<User | null>;
    }

    Implemented by

    Index

    Methods