mirror of
https://github.com/laurent22/joplin.git
synced 2025-04-26 12:02:59 +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) {
|
if (!this.queue_.length) {
|
||||||
shim.clearInterval(iid);
|
shim.clearInterval(iid);
|
||||||
resolve();
|
resolve(null);
|
||||||
}
|
}
|
||||||
}, 100);
|
}, 100);
|
||||||
});
|
});
|
||||||
|
@ -16,9 +16,9 @@ abstract class KeychainServiceDriverBase {
|
|||||||
return this.clientId_;
|
return this.clientId_;
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract async setPassword(name: string, password: string): Promise<boolean>;
|
abstract setPassword(name: string, password: string): Promise<boolean>;
|
||||||
abstract async password(name: string): Promise<string>;
|
abstract password(name: string): Promise<string>;
|
||||||
abstract async deletePassword(name: string): Promise<void>;
|
abstract deletePassword(name: string): Promise<void>;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user