@gacua/backend
Version:
GACUA Backend
10 lines (9 loc) • 375 B
TypeScript
/**
* @license
* Copyright 2025 MuleRun
* SPDX-License-Identifier: Apache-2.0
*/
import { Config, AuthType } from '@gacua/gemini-cli-core';
export declare function getAuthType(): AuthType | undefined;
export declare function isAuthenticated(config: Config, authType?: AuthType): Promise<boolean>;
export declare function tryAuthenticate(): Promise<AuthType | undefined>;