6 lines
154 B
TypeScript
6 lines
154 B
TypeScript
import FeatureFlag from "entities/FeatureFlag";
|
|
|
|
export default function getFeatureFlags(): FeatureFlag {
|
|
return (window as any).FEATURE_FLAGS || {};
|
|
}
|