UNPKG

@azure/identity

Version:

Provides credential implementations for Azure SDK libraries that can authenticate with Microsoft Entra ID

12 lines 344 B
/** * A function that searches for credentials in the Visual Studio Code credential store. * * @returns an array of credentials (username and password) * @internal * */ export type VSCodeCredentialFinder = () => Promise<Array<{ account: string; password: string; }>>; //# sourceMappingURL=visualStudioCodeCredentialPlugin.d.ts.map