Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 17, 2023
1 parent 19aac7a commit 45244de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions Source/Interface/Biome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
*
*/
export default interface Type extends Omit<Configuration, "$schema"> {
// biome-ignore lint/suspicious/noExplicitAny:
[key: string]: any;
[key: string]: Value<Type>;
}

// @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";
4 changes: 2 additions & 2 deletions Source/Interface/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
*
*/
export default interface Type extends Option {
// biome-ignore lint/suspicious/noExplicitAny:
[key: string]: any;
[key: string]: Value<Type> | Value<Option>;

Biome?: boolean | Biome;
}

import type Value from "typescript-esbuild/Target/Interface/Value.js";
import type Biome from "./Biome.js";

import type Option from "files-pipe/Target/Interface/Option.js";

0 comments on commit 45244de

Please sign in to comment.