UNPKG

@openshift-console/dynamic-plugin-sdk

Version:

Provides core APIs, types and utilities used by dynamic plugins at runtime.

6 lines (5 loc) 167 B
import { Map as ImmutableMap } from 'immutable'; export type FeatureState = ImmutableMap<string, boolean>; export type FeatureSubStore = { FLAGS: FeatureState; };