UNPKG

ruchy-syntax-tools

Version:

Comprehensive syntax highlighting and language support for the Ruchy programming language

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