diff --git a/packages/web-features/index.ts b/packages/web-features/index.ts index 54ae8ee16c0..6c40af6e500 100644 --- a/packages/web-features/index.ts +++ b/packages/web-features/index.ts @@ -1,7 +1,7 @@ import { readFileSync } from "node:fs"; import { fileURLToPath } from "node:url"; - -import { WebFeaturesData } from "./types"; +import type { WebFeaturesData } from "./types.d.ts"; +export type * from "./types.d.ts"; const jsonPath = fileURLToPath(new URL("./data.json", import.meta.url)); const { browsers, features, groups, snapshots } = JSON.parse(