From 8fc117e31bee4279b2379a9f14a134052d15ef31 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Tue, 7 Jan 2025 09:44:41 +0000 Subject: [PATCH] fix type --- packages/@biomejs/js-api/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/@biomejs/js-api/src/index.ts b/packages/@biomejs/js-api/src/index.ts index 34487f7208cc..f95c4f4b79ca 100644 --- a/packages/@biomejs/js-api/src/index.ts +++ b/packages/@biomejs/js-api/src/index.ts @@ -2,14 +2,14 @@ import type { BiomePath, Diagnostic, FixFileMode, - PartialConfiguration, + Configuration, ProjectKey, Workspace, } from "@biomejs/wasm-nodejs"; import { Distribution, type WasmModule, loadModule, wrapError } from "./wasm"; // Re-export of some useful types for users -export type Configuration = PartialConfiguration; +export type Configuration = Configuration; export type { Diagnostic }; export { Distribution };