//this file has structures, described in https://www.rfc-editor.org/rfc/rfc6749 export type OAuthErrorResponse = { error?: string; error_description?: string; }; export type OAuthTokenResponse = { access_token?: string; expires_in?: number; id_token?: string; issued_at?: number; refresh_token?: string; };