1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 21:33:27 +00:00

[PM-22309] Resolve TypeScript 5.8 blockers for tool owned files (#16065)

* Add explicit return types to resolve typescript 5.8 blockers

* Remove type from input
This commit is contained in:
Oscar Hinton
2025-08-19 11:13:22 +02:00
committed by GitHub
parent e942645d44
commit a45f053a7f
2 changed files with 13 additions and 9 deletions

View File

@@ -345,7 +345,8 @@ export class LegacyPasswordGenerationService implements PasswordGenerationServic
timeout({
// timeout after 1 second
each: 1000,
with() {
// TODO(PM-22309): Typescript 5.8 update, confirm type
with(): any[] {
return [];
},
}),
@@ -370,7 +371,8 @@ export class LegacyPasswordGenerationService implements PasswordGenerationServic
timeout({
// timeout after 1 second
each: 1000,
with() {
// TODO(PM-22309): Typescript 5.8 update, confirm type
with(): any[] {
return [];
},
}),