We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a242745 commit bef9252Copy full SHA for bef9252
2 files changed
src/evaluator/types.ts
@@ -4,7 +4,7 @@ import SplitIO from '../../types/splitio';
4
import { ILogger } from '../logger/types';
5
6
export interface IDependencyMatcherValue {
7
- key: SplitIO.SplitKeyObject,
+ key: SplitIO.SplitKey,
8
attributes?: SplitIO.Attributes
9
}
10
src/evaluator/value/sanitize.ts
@@ -41,7 +41,7 @@ function sanitizeBoolean(val: any): boolean | undefined {
41
return undefined;
42
43
44
-function dependencyProcessor(sanitizedValue: SplitIO.SplitKeyObject, attributes?: SplitIO.Attributes): IDependencyMatcherValue {
+function dependencyProcessor(sanitizedValue: SplitIO.SplitKey, attributes?: SplitIO.Attributes): IDependencyMatcherValue {
45
return {
46
key: sanitizedValue,
47
attributes
0 commit comments