/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export interface OAuthStateParameter { nonce: string; connectionId: string; } export declare function oauthTokenBroadcastChannelName(nonce: string): string; export type GrantResponse = { error: string; } | { error?: undefined; access_token: string; expires_in: number; refresh_token: string; }; export interface GrantSettingsValue { access_token: string; expires_in: number; refresh_token: string; issue_time: number; } //# sourceMappingURL=connection-common.d.ts.map