Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
dom-helpers
/
cjs
/
hasClass.d.ts
blob: 9b7d96e3154aa7716e32b963e4ef66d1672654f5 [
file
] [
log
] [
blame
] [
edit
]
/**
* Checks if a given element has a CSS class.
*
* @param element the element
* @param className the CSS class name
*/
export
default
function
hasClass
(
element
:
Element
|
SVGElement
,
className
:
string
):
boolean
;