FrontPastel/node_modules/dom-helpers/cjs/hasClass.d.ts

8 lines
219 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
/**
* 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;