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 3b91d11 commit 8348419Copy full SHA for 8348419
types/index.d.ts
@@ -0,0 +1,17 @@
1
+// Declaration file for Javascript and Node OpenFeature Split Provider
2
+// Project: http://www.split.io/
3
+
4
+import { Provider } from "@openfeature/js-sdk";
5
6
+export = SplitProvider;
7
8
+declare module SplitProvider {
9
+ export interface SplitProviderOptions {
10
+ splitClient: SplitIO.IClient;
11
+ }
12
13
+ /**
14
+ * OpenFeature Split Provider constructor.
15
+ */
16
+ export function OpenFeatureSplitProvider(options: SplitProviderOptions): Provider;
17
+}
0 commit comments