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:
@@ -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 [];
|
||||
},
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user