diff --git a/src/items/any.ts b/src/items/any.ts index 2925237..f53eb4f 100644 --- a/src/items/any.ts +++ b/src/items/any.ts @@ -1,6 +1,7 @@ import SchemaItem from '../SchemaItem' export default class SchemaAny extends SchemaItem { + // @ts-expect-error input while not used is necessary for the `override to work` public override isOfType(input: unknown): input is any { return true }