Skip to content

Commit

Permalink
changed to enum
Browse files Browse the repository at this point in the history
  • Loading branch information
nenadnovovicqc committed Sep 13, 2024
1 parent 757733e commit 4b284de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/testing/models.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ArbitraryProperties } from '../types';
import { HumanReviewFieldContentType } from '../util';

export interface Threshold {
lt?: number;
Expand Down Expand Up @@ -90,7 +91,7 @@ export abstract class BaseEvaluator<TestCaseType, OutputType>
export interface HumanReviewField {
name: string;
value: string;
contentType?: string;
contentType?: HumanReviewFieldContentType;
}

/**
Expand Down

0 comments on commit 4b284de

Please sign in to comment.