X-Git-Url: http://these/git/?a=blobdiff_plain;f=src%2Fshared%2Futils%2Fbrowser%2Findex.ts;h=d07b16e7c8a9b2f0abdbdc933ddf3d768c84a525;hb=b1292b958af008763028df9591f5778be9d117f5;hp=a7a08a505f4f486c4a2fc85fe23cc329ad1aef98;hpb=b8fd516f020e9cdd612e62ab1070ad9dc2836419;p=lemmy-ui.git diff --git a/src/shared/utils/browser/index.ts b/src/shared/utils/browser/index.ts index a7a08a5..d07b16e 100644 --- a/src/shared/utils/browser/index.ts +++ b/src/shared/utils/browser/index.ts @@ -1,5 +1,19 @@ import canShare from "./can-share"; +import dataBsTheme from "./data-bs-theme"; import isBrowser from "./is-browser"; +import isDark from "./is-dark"; +import loadCss from "./load-css"; +import restoreScrollPosition from "./restore-scroll-position"; +import saveScrollPosition from "./save-scroll-position"; import share from "./share"; -export { canShare, isBrowser, share }; +export { + canShare, + dataBsTheme, + isBrowser, + isDark, + loadCss, + restoreScrollPosition, + saveScrollPosition, + share, +};