Files
PayDirt/node_modules/@azure/identity/dist/browser/credentials/visualStudioCodeCredentialPlugin.d.ts

12 lines
344 B
TypeScript
Raw Normal View History

2025-11-12 10:13:24 -05:00
/**
* 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