Skip to content

Commit 8750ccb

Browse files
authored
Make evaluation context required in IFeatureFilter (#6)
1 parent 00d613c commit 8750ccb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/filter/FeatureFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
export interface IFeatureFilter {
55
name: string; // e.g. Microsoft.TimeWindow
6-
evaluate(context?: IFeatureFilterEvaluationContext, appContext?: unknown): Promise<boolean> | boolean;
6+
evaluate(context: IFeatureFilterEvaluationContext, appContext?: unknown): Promise<boolean> | boolean;
77
}
88

99
export interface IFeatureFilterEvaluationContext {

0 commit comments

Comments
 (0)