UNPKG

@atlaskit/editor-plugin-feature-flags

Version:

Feature flags plugin for @atlaskit/editor-core

7 lines (6 loc) 294 B
import type { FeatureFlags, NextEditorPlugin } from '@atlaskit/editor-common/types'; export type FeatureFlagsPluginOptions = FeatureFlags; export type FeatureFlagsPlugin = NextEditorPlugin<'featureFlags', { pluginConfiguration: FeatureFlagsPluginOptions; sharedState: FeatureFlags; }>;