@@ -118,8 +118,7 @@ export interface Provider extends Pick<Partial<EvaluationLifeCycle>, 'hooks'> {
118118 resolveBooleanEvaluation (
119119 flagKey : string ,
120120 defaultValue : boolean ,
121- context : EvaluationContext ,
122- options : FlagEvaluationOptions | undefined
121+ context : EvaluationContext
123122 ) : Promise < ResolutionDetails < boolean > > ;
124123
125124 /**
@@ -128,8 +127,7 @@ export interface Provider extends Pick<Partial<EvaluationLifeCycle>, 'hooks'> {
128127 resolveStringEvaluation (
129128 flagKey : string ,
130129 defaultValue : string ,
131- context : EvaluationContext ,
132- options : FlagEvaluationOptions | undefined
130+ context : EvaluationContext
133131 ) : Promise < ResolutionDetails < string > > ;
134132
135133 /**
@@ -138,8 +136,7 @@ export interface Provider extends Pick<Partial<EvaluationLifeCycle>, 'hooks'> {
138136 resolveNumberEvaluation (
139137 flagKey : string ,
140138 defaultValue : number ,
141- context : EvaluationContext ,
142- options : FlagEvaluationOptions | undefined
139+ context : EvaluationContext
143140 ) : Promise < ResolutionDetails < number > > ;
144141
145142 /**
@@ -148,8 +145,7 @@ export interface Provider extends Pick<Partial<EvaluationLifeCycle>, 'hooks'> {
148145 resolveObjectEvaluation < U extends object > (
149146 flagKey : string ,
150147 defaultValue : U ,
151- context : EvaluationContext ,
152- options : FlagEvaluationOptions | undefined
148+ context : EvaluationContext
153149 ) : Promise < ResolutionDetails < U > > ;
154150}
155151
0 commit comments