refactor(backend): 必要ないas anyを消去 (#10293)

This commit is contained in:
Kisaragi 2023-03-11 08:51:37 +09:00 committed by GitHub
parent 65b1524f92
commit 0ac1fc846b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 5 deletions

View file

@ -90,7 +90,7 @@ export class SignupService {
cipher: undefined,
passphrase: undefined,
},
} as any, (err, publicKey, privateKey) =>
}, (err, publicKey, privateKey) =>
err ? rej(err) : res([publicKey, privateKey]),
));