Skip to content

Commit

Permalink
remove unused type
Browse files Browse the repository at this point in the history
  • Loading branch information
x0k committed Jan 22, 2025
1 parent b49e7a3 commit 0f1a284
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/utils/test/schema/types.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
import { RJSFSchema, RJSFValidationError, ValidationData, ValidatorType } from '../../src';
import { RJSFValidationError, ValidationData, ValidatorType } from '../../src';

export interface TestValidatorParams<T = any> {
isValid?: boolean[];
data?: ValidationData<T>[];
errorList?: RJSFValidationError[][];
}

export interface IExpectType {
// eslint-disable-next-line no-unused-vars
expectedCB: (schema: RJSFSchema, options?: any) => unknown;
toEqual: any;
}

export interface TestValidatorType<T = any> extends ValidatorType<T> {
// eslint-disable-next-line no-unused-vars
setReturnValues(params?: TestValidatorParams<T>): void;
Expand Down

0 comments on commit 0f1a284

Please sign in to comment.