We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98df0fd commit 9467095Copy full SHA for 9467095
ts-tests/index.ts
@@ -12,6 +12,8 @@
12
*/
13
14
import { SplitFactory } from '../types/index';
15
+import { SplitFactory as SplitFactoryCS } from '../types/client';
16
+import { SplitFactory as SplitFactorySS } from '../types/server';
17
18
let stringPromise: Promise<string>;
19
let splitNamesPromise: Promise<SplitIO.SplitNames>;
@@ -166,6 +168,9 @@ browserSettings = {
166
168
SDK = SplitFactory(nodeSettings);
167
169
AsyncSDK = SplitFactory(asyncSettings);
170
BrowserSDK = SplitFactory(browserSettings);
171
+SDK = SplitFactorySS(nodeSettings);
172
+AsyncSDK = SplitFactorySS(asyncSettings);
173
+BrowserSDK = SplitFactoryCS(browserSettings);
174
175
// The settings values the SDK expose.
176
const instantiatedSettingsCore: {
0 commit comments