/** * @module UserUtils * 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 */ export * from "./array.js"; export * from "./colors.js"; export * from "./crypto.js"; export * from "./DataStore.js"; export * from "./DataStoreSerializer.js"; export * from "./Debouncer.js"; export * from "./Dialog.js"; export * from "./dom.js"; export * from "./math.js"; export * from "./misc.js"; export * from "./NanoEmitter.js"; export * from "./SelectorObserver.js"; export * from "./translation.js"; export * from "./types.js";