diff --git a/Source/Interface/Biome.ts b/Source/Interface/Biome.ts index d28263d..d346cef 100644 --- a/Source/Interface/Biome.ts +++ b/Source/Interface/Biome.ts @@ -3,9 +3,8 @@ * */ export default interface Type extends Omit { - // biome-ignore lint/suspicious/noExplicitAny: - [key: string]: any; + [key: string]: Value; } -// @TODO: Resolve proper type -// import type { Configuration } from ""; +import type { Configuration } from "@biomejs/js-api"; +import type Value from "typescript-esbuild/Target/Interface/Value.js"; diff --git a/Source/Interface/Option.ts b/Source/Interface/Option.ts index 8fb6f03..0cdc0a5 100644 --- a/Source/Interface/Option.ts +++ b/Source/Interface/Option.ts @@ -3,12 +3,12 @@ * */ export default interface Type extends Option { - // biome-ignore lint/suspicious/noExplicitAny: - [key: string]: any; + [key: string]: Value | Value