import { GrantType } from '../grant-type.enum'; export interface OAuthRefreshGrantPayload { grant_type: GrantType.RefreshToken; username: string; refresh_token: string; takeExclusiveSignOnControl?: boolean; client_id: string; }