mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-05 02:39:26 +02:00
chore: update dependencies
This commit is contained in:
parent
dd68af8072
commit
d862077c34
19 changed files with 198 additions and 184 deletions
|
@ -39,7 +39,7 @@
|
|||
"@yume-chan/struct": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.5.5",
|
||||
"@types/node": "^22.7.4",
|
||||
"@yume-chan/eslint-config": "workspace:^",
|
||||
"@yume-chan/test-runner": "workspace:^",
|
||||
"@yume-chan/tsconfig": "workspace:^",
|
||||
|
|
|
@ -71,6 +71,7 @@ export const AdbSignatureAuthenticator: AdbAuthenticator = async function* (
|
|||
credentialStore: AdbCredentialStore,
|
||||
getNextRequest: () => Promise<AdbPacketData>,
|
||||
): AsyncIterable<AdbPacketData> {
|
||||
// eslint-disable-next-line @typescript-eslint/await-thenable
|
||||
for await (const key of credentialStore.iterateKeys()) {
|
||||
const packet = await getNextRequest();
|
||||
|
||||
|
@ -99,6 +100,7 @@ export const AdbPublicKeyAuthenticator: AdbAuthenticator = async function* (
|
|||
}
|
||||
|
||||
let privateKey: AdbPrivateKey | undefined;
|
||||
// eslint-disable-next-line @typescript-eslint/await-thenable
|
||||
for await (const key of credentialStore.iterateKeys()) {
|
||||
privateKey = key;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue