mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
/**
|
|
* 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;
|