import { GrantType } from '../grant-type.enum'; export interface OAuthClientCredentialsGrantPayload { client_id: string; client_secret: string; grant_type: GrantType.ClientCredentials; scope: string; takeExclusiveSignOnControl?: boolean; }