webext-schema
Advanced tools
Comparing version 5.1.5 to 5.1.6
@@ -970,3 +970,3 @@ /** | ||
* @param {number|Array} tabId - tab ID | ||
* @param {object} opt - options | ||
* @param {object} [opt] - options | ||
* @returns {Promise.<?Array>} - array of tabs.Tab | ||
@@ -982,3 +982,3 @@ */ | ||
} | ||
return arr ?? null; | ||
return arr || null; | ||
}; | ||
@@ -985,0 +985,0 @@ |
@@ -28,3 +28,3 @@ { | ||
"chai": "^4.3.7", | ||
"eslint": "^8.34.0", | ||
"eslint": "^8.35.0", | ||
"eslint-config-standard": "^17.0.0", | ||
@@ -59,3 +59,3 @@ "eslint-plugin-import": "^2.27.5", | ||
}, | ||
"version": "5.1.5" | ||
"version": "5.1.6" | ||
} |
@@ -48,3 +48,3 @@ export function isPermissionGranted(perm: object): Promise<boolean>; | ||
export function highlightTab(index: number | any[], windowId?: number): Promise<object>; | ||
export function moveTab(tabId: number | any[], opt: object): Promise<any[] | null>; | ||
export function moveTab(tabId: number | any[], opt?: object): Promise<any[] | null>; | ||
export function reloadTab(tabId: number, opt: object): Promise<void>; | ||
@@ -51,0 +51,0 @@ export function removeTab(arg: number | any[]): Promise<void>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3546277