X-Git-Url: http://these/git/?a=blobdiff_plain;f=src%2Fshared%2Futils%2Fbrowser%2Findex.ts;h=321a4c9f46b7ee18637f855e349f77c76234f8a8;hb=7eddc52c1302a1f0d7189576ace44957d6b42d2a;hp=b12737ce0be9e9407665328c0b4d1289fe27148d;hpb=043b522ff1b0a395eda7d5e2b01fd035c5ec6b6e;p=lemmy-ui.git diff --git a/src/shared/utils/browser/index.ts b/src/shared/utils/browser/index.ts index b12737c..321a4c9 100644 --- a/src/shared/utils/browser/index.ts +++ b/src/shared/utils/browser/index.ts @@ -1,15 +1,23 @@ import canShare from "./can-share"; +import clearAuthCookie from "./clear-auth-cookie"; +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 setAuthCookie from "./set-auth-cookie"; import share from "./share"; export { canShare, + clearAuthCookie, + dataBsTheme, isBrowser, + isDark, loadCss, restoreScrollPosition, saveScrollPosition, + setAuthCookie, share, };