From a84e9df9a06d656eb2e98ce2acdf7e80a1eb4c74 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Thu, 2 Jan 2025 17:21:51 +0000 Subject: [PATCH] chore(types): resolve named default linting --- types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index c80a5c0..0749dfa 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,5 +1,5 @@ -import { AnySchema, default as _ajv, Options as AjvOptions, ValidateFunction } from 'ajv' -import { default as AjvJTD, JTDOptions } from 'ajv/dist/jtd' +import _ajv, { AnySchema, Options as AjvOptions, ValidateFunction } from 'ajv' +import AjvJTD, { JTDOptions } from 'ajv/dist/jtd' import type { Options, ErrorObject } from 'ajv' import { AnyValidateFunction } from 'ajv/dist/core'