PromucFlow_constructor/app/client/src/utils/featureFlags.ts

6 lines
154 B
TypeScript
Raw Normal View History

import FeatureFlag from "entities/FeatureFlag";
2020-05-28 18:10:26 +00:00
export default function getFeatureFlags(): FeatureFlag {
return (window as any).FEATURE_FLAGS || {};
2020-05-28 18:10:26 +00:00
}