mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
7dd3ed815a
(cherry picked from commit 9d0acba00065d78dab2fcd73cad6883bb6539fc7)
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
declare module 'element-class' {
|
|
function elementClass(element: HTMLElement): ElementClass;
|
|
|
|
export = elementClass;
|
|
}
|
|
|
|
interface ElementClass {
|
|
add: (className: string) => void;
|
|
remove: (className: string) => void;
|
|
}
|