| 1 |
import SimpleBarCore from 'simplebar-core'; |
| 2 |
export default class SimpleBar extends SimpleBarCore { |
| 3 |
static globalObserver: MutationObserver; |
| 4 |
static instances: WeakMap<Node, SimpleBar>; |
| 5 |
constructor(...args: ConstructorParameters<typeof SimpleBarCore>); |
| 6 |
static initDOMLoadedElements(): void; |
| 7 |
static removeObserver(): void; |
| 8 |
initDOM(): void; |
| 9 |
unMount(): void; |
| 10 |
static initHtmlApi(): void; |
| 11 |
static handleMutations(mutations: MutationRecord[]): void; |
| 12 |
} |
| 13 |
|