fix: saveClientSecrets type object

This commit is contained in:
arc-alex
2023-11-27 23:24:36 +01:00
parent cb198bc3fe
commit aaa1fb9368
+3 -3
View File
@@ -202,11 +202,11 @@ class sheet {
}
/**
* saves secrets Object to appdata path as client_secret.json
* @param {Object} secrets
* saves secrets object to appdata path as client_secret.json
* @param {object} secrets
* @throws
*/
public async saveClientSecrets(secrets: Object) {
public async saveClientSecrets(secrets: object) {
sheet.client = null;
sheet.authUrl = null;
ensureDirectory(this.sheetsFolder);