import BaseEntityServiceInterface from '../../common/services/BaseEntityService/BaseEntityServiceInterface'; import Authenticator from '../entity/Authenticator'; import RequestPromise from '../../common/DTO/RequestPromise'; export default interface AuthenticatorServiceInterface extends BaseEntityServiceInterface { login(username: string, password: string, scope: Array): Promise; logout(); refreshToken(refresh_token: string): RequestPromise; }