You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
479 B

  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. }