index.tsx17 lines · main
| 1 | export * from './auth' |
| 2 | export * from './configcat' |
| 3 | export * from './consent-state' |
| 4 | export * from './constants' |
| 5 | export * from './database-types' |
| 6 | export * from './enabled-features' |
| 7 | export * from './feature-flags' |
| 8 | export * from './gotrue' |
| 9 | export * from './helpers' |
| 10 | export * from './hooks' |
| 11 | export * from './MetaFavicons/pages-router' |
| 12 | export * from './Providers' |
| 13 | export * from './first-referrer-cookie' |
| 14 | export * from './telemetry' |
| 15 | export * from './telemetry-utils' |
| 16 | |
| 17 | export const safeLocalStorage = typeof window !== "undefined" ? window.localStorage : null; |