From c7433a3e5c722605d09e3b64fdc1a3d2777e1aff Mon Sep 17 00:00:00 2001 From: Emiliano Sanchez Date: Thu, 12 Sep 2024 17:05:51 -0300 Subject: [PATCH] Fix export --- src/index.ts | 2 +- src/selectors.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index cf8060e..0aefb73 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,4 +9,4 @@ export { connectSplit } from './react-redux/connectSplit'; export { connectToggler, mapTreatmentToProps, mapIsFeatureOnToProps } from './react-redux/connectToggler'; // Types -export type { IStatus, ISplitState, IGetSplitState, IInitSplitSdkParams, IGetTreatmentsParams, IDestroySplitSdkParams, ITrackParams } from './types'; +export { IStatus, ISplitState, IGetSplitState, IInitSplitSdkParams, IGetTreatmentsParams, IDestroySplitSdkParams, ITrackParams } from './types'; diff --git a/src/selectors.ts b/src/selectors.ts index c678d35..ed1411e 100644 --- a/src/selectors.ts +++ b/src/selectors.ts @@ -85,7 +85,7 @@ export function selectTreatmentWithConfigAndStatus(splitState: ISplitState, feat } /** - * Extracts an object with the status properties of the SDK manager or client from the Split state, for the given user key. + * Extracts an object with the status properties of the SDK client or manager from the Split state. * * @param {ISplitState} splitState * @param {SplitIO.SplitKey} key To use only on client-side. Ignored in server-side. If a key is provided and a client associated to that key has been used, the status of that client is returned.