This commit is contained in:
Manav Rathi
2024-05-31 14:06:06 +05:30
parent 05e4d18a14
commit 3ad8f73289

View File

@@ -0,0 +1,15 @@
/**
* Fetch feature flags (potentially user specific) from remote and save them in
* local storage for subsequent lookup.
*/
export const fetchAndSaveFeatureFlags = async () => {};
/**
* Return `true` if the current user is marked as an "internal" user.
*/
export const isInternalUser = async () => {};
/**
* Return `true` if the current user is marked as an "beta" user.
*/
export const isBetaUser = async () => {};