1
0

index.ts 771 B

123456789101112131415161718192021
  1. /**
  2. * @module UserUtils
  3. * UserUtils is a lightweight library with various utilities for userscripts, allowing you to register listeners for when CSS selectors exist, intercept events, create persistent & synchronous data stores, modify the DOM more easily and much more
  4. */
  5. export * from "./array.js";
  6. export * from "./colors.js";
  7. export * from "./crypto.js";
  8. export * from "./DataStore.js";
  9. export * from "./DataStoreSerializer.js";
  10. export * from "./Debouncer.js";
  11. export * from "./Dialog.js";
  12. export * from "./dom.js";
  13. export * from "./errors.js";
  14. export * from "./math.js";
  15. export * from "./misc.js";
  16. export * from "./Mixins.js";
  17. export * from "./NanoEmitter.js";
  18. export * from "./SelectorObserver.js";
  19. export * from "./translation.js";
  20. export * from "./types.js";