@@ -55,40 +55,6 @@ declare module 'vscode' {
5555 export function registerDiffInformationCommand ( command : string , callback : ( diff : LineChange [ ] , ...args : any [ ] ) => any , thisArg ?: any ) : Disposable ;
5656 }
5757
58- /**
59- * Namespace for handling credentials.
60- */
61- export namespace credentials {
62-
63- /**
64- * Read a previously stored secret from the credential store.
65- *
66- * @param service The service of the credential.
67- * @param account The account of the credential.
68- * @return A promise for the secret of the credential.
69- */
70- export function readSecret ( service : string , account : string ) : Thenable < string | undefined > ;
71-
72- /**
73- * Write a secret to the credential store.
74- *
75- * @param service The service of the credential.
76- * @param account The account of the credential.
77- * @param secret The secret of the credential to write to the credential store.
78- * @return A promise indicating completion of the operation.
79- */
80- export function writeSecret ( service : string , account : string , secret : string ) : Thenable < void > ;
81-
82- /**
83- * Delete a previously stored secret from the credential store.
84- *
85- * @param service The service of the credential.
86- * @param account The account of the credential.
87- * @return A promise resolving to true if there was a secret for that service and account.
88- */
89- export function deleteSecret ( service : string , account : string ) : Thenable < boolean > ;
90- }
91-
9258 /**
9359 * Represents a color in RGBA space.
9460 */
0 commit comments