UNPKG

@rushstack/rush-azure-storage-build-cache-plugin

Version:

Rush plugin for Azure storage cloud build cache

11 lines 554 B
import { type AccessToken, type GetTokenOptions, type TokenCredential } from '@azure/identity'; /** * AdoCodespacesAuthCredential uses "Azure Devops Codespaces Authentication" VSCode extension to get the access * tokens for AAD in Codespaces. * https://github.com/microsoft/ado-codespaces-auth */ export declare class AdoCodespacesAuthCredential implements TokenCredential { getToken(scopes: string | [string], options?: GetTokenOptions): Promise<AccessToken>; private _decodeToken; } //# sourceMappingURL=AdoCodespacesAuthCredential.d.ts.map