-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.ts
More file actions
30 lines (27 loc) · 925 Bytes
/
index.ts
File metadata and controls
30 lines (27 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Split SDK factory (Renamed to avoid name conflict with SplitFactory component)
export { SplitFactory } from '@splitsoftware/splitio/client';
// Components
export { SplitTreatments } from './SplitTreatments';
export { SplitClient } from './SplitClient';
export { SplitFactoryProvider } from './SplitFactoryProvider';
// Hooks
export { useTrack } from './useTrack';
export { useSplitClient } from './useSplitClient';
export { useSplitTreatments } from './useSplitTreatments';
export { useSplitManager } from './useSplitManager';
export { useSplitContext } from './SplitContext';
// Types
export type {
GetTreatmentsOptions,
ISplitClientChildProps,
ISplitClientProps,
ISplitContextValues,
ISplitFactoryProviderChildProps,
ISplitFactoryProviderProps,
ISplitStatus,
ISplitTreatmentsChildProps,
ISplitTreatmentsProps,
IUpdateProps,
IUseSplitClientOptions,
IUseSplitTreatmentsOptions
} from './types';