mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Chore: Fixed TS issues
This commit is contained in:
parent
e954ecd024
commit
d76ec0ba0d
@ -103,7 +103,7 @@ export default class AsyncActionQueue {
|
||||
|
||||
if (!this.queue_.length) {
|
||||
shim.clearInterval(iid);
|
||||
resolve();
|
||||
resolve(null);
|
||||
}
|
||||
}, 100);
|
||||
});
|
||||
|
@ -16,9 +16,9 @@ abstract class KeychainServiceDriverBase {
|
||||
return this.clientId_;
|
||||
}
|
||||
|
||||
abstract async setPassword(name: string, password: string): Promise<boolean>;
|
||||
abstract async password(name: string): Promise<string>;
|
||||
abstract async deletePassword(name: string): Promise<void>;
|
||||
abstract setPassword(name: string, password: string): Promise<boolean>;
|
||||
abstract password(name: string): Promise<string>;
|
||||
abstract deletePassword(name: string): Promise<void>;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user