/** Access token information for an authenticated subject */ export interface TokenResult { accessToken: string; expiresInSeconds: number; tokenType: string; } /** Well known endpoints of id-service */ export interface WellKnownEndpoints { jwksEndpoint: string; accessManagementGraphQlEndpoint: string; authGraphQlEndpoint: string; axinomAuthBaseUrl: string; axAuthManagementGraphQlEndpoint: string; } /** Service account information */ export interface ServiceAccountResult { clientId: string; clientSecret: string; } //# sourceMappingURL=types.d.ts.map