@nice-code/state 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,5 +4,7 @@ export interface INiceStateDevtoolsProps {
|
|
|
4
4
|
core: StateDevtoolsCore;
|
|
5
5
|
position?: TDevtoolsPosition;
|
|
6
6
|
initialOpen?: boolean;
|
|
7
|
+
/** Show the panel even when NODE_ENV is not "development". */
|
|
8
|
+
forceEnable?: boolean;
|
|
7
9
|
}
|
|
8
|
-
export declare function NiceStateDevtools(props: INiceStateDevtoolsProps): import("react/jsx-runtime").JSX.Element | null;
|
|
10
|
+
export declare function NiceStateDevtools({ forceEnable, ...props }: INiceStateDevtoolsProps): import("react/jsx-runtime").JSX.Element | null;
|