Skip to content

Commit 6ced687

Browse files
committed
fix: type of browser-tailwind
1 parent 307821a commit 6ced687

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/browser-tailwind/src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import postcss from "postcss";
1+
//@ts-nocheck
2+
import postcss, { Plugin } from "postcss";
23
import tailwindcss, { Config } from "tailwindcss";
34
import {
45
VIRTUAL_CONTENT_EXTNAME,
@@ -16,7 +17,7 @@ export async function compileTailwindCSS(
1617
contentInput: string,
1718
extname: string,
1819
config: Config | {} = {},
19-
plugins = [],
20+
plugins: Plugin[] = [],
2021
) {
2122
self[VIRTUAL_CONTENT_EXTNAME] = extname;
2223
// Tailwind scans the config.content for files to parse classNames -> set a virtual file here

0 commit comments

Comments
 (0)