1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-22 15:19:10 +00:00
Sonarr/frontend/typings/element-class.ts

11 lines
225 B
TypeScript
Raw Permalink Normal View History

2024-12-21 18:05:34 +00:00
declare module 'element-class' {
function elementClass(element: HTMLElement): ElementClass;
export = elementClass;
}
interface ElementClass {
add: (className: string) => void;
remove: (className: string) => void;
}