Skip to content

Commit 36ba97b

Browse files
committed
build(deps-dev): bump @types/chrome from 0.1.12 to 0.1.14
1 parent 2631c40 commit 36ba97b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@rspack/core": "^1.5.8",
3838
"@swc/core": "^1.13.5",
3939
"@swc/jest": "^0.2.39",
40-
"@types/chrome": "0.1.12",
40+
"@types/chrome": "0.1.14",
4141
"@types/decompress": "^4.2.7",
4242
"@types/jest": "^30.0.0",
4343
"@types/node": "^24.5.2",

src/api/chrome/action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export function setBadgeText(text: string, tabId: number | undefined): Promise<v
1010
}))
1111
}
1212

13-
export function setBadgeBgColor(color: string | chrome.action.ColorArray | undefined): Promise<void> {
14-
let realColor: string | chrome.action.ColorArray = color ?? (
13+
export function setBadgeBgColor(color: string | chrome.extensionTypes.ColorArray | undefined): Promise<void> {
14+
let realColor: string | chrome.extensionTypes.ColorArray = color ?? (
1515
// Use null to clear bg color for Firefox
1616
IS_FIREFOX ? null as unknown as string : [0, 0, 0, 0]
1717
)

0 commit comments

Comments
 (0)