UNPKG

@ydbjs/auth

Version:

Authentication providers for YDB: static credentials, tokens, anonymous, and cloud metadata. Integrates with the core driver for secure access.

9 lines 332 B
import { CredentialsProvider } from './index.js'; /** * Provides anonymous credentials for authentication. * The token returned by this provider is always an empty string. */ export declare class AnonymousCredentialsProvider extends CredentialsProvider { getToken(): Promise<string>; } //# sourceMappingURL=anonymous.d.ts.map