chore: fixing up api-docs exporting

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-06-12 17:43:18 +02:00
parent 128279fc4f
commit 6109f32b78
+2 -3
View File
@@ -235,11 +235,10 @@ export type ErrorBoundaryFallbackProps = {
};
// @public (undocumented)
export const FeatureFlagged: ({ children, flag }: FeatureFlaggedProps) => JSX.Element | null;
export const FeatureFlagged: (props: FeatureFlaggedProps) => JSX.Element | null;
// @public (undocumented)
export type FeatureFlaggedProps = {
flag: string;
export type FeatureFlaggedProps = FeatureFlaggedSelector & {
children: JSX.Element | null;
};