16 lines
561 B
TypeScript
16 lines
561 B
TypeScript
|
|
import type { WorkloadIdentity } from "./types.mjs";
|
||
|
|
import type { Fetch } from "../internal/builtin-types.mjs";
|
||
|
|
export declare class WorkloadIdentityAuth {
|
||
|
|
private cachedToken;
|
||
|
|
private refreshPromise;
|
||
|
|
private readonly config;
|
||
|
|
private readonly tokenExchangeUrl;
|
||
|
|
private readonly fetch;
|
||
|
|
constructor(config: WorkloadIdentity, fetch?: Fetch);
|
||
|
|
getToken(): Promise<string>;
|
||
|
|
private refreshToken;
|
||
|
|
private isTokenExpired;
|
||
|
|
private needsRefresh;
|
||
|
|
invalidateToken(): void;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=workload-identity-auth.d.mts.map
|