We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ed2a50 commit b551b52Copy full SHA for b551b52
src/interface.ts
@@ -1,7 +1,12 @@
1
-import { transform, type TransformOptions } from 'lightningcss'
+import {
2
+ transform,
3
+ type TransformOptions as InternalTransformOptions,
4
+ type CustomAtRules,
5
+} from 'lightningcss'
6
7
type Filter = string | RegExp
8
type Implementation = typeof import('lightningcss')
9
+type TransformOptions = InternalTransformOptions<CustomAtRules>
10
11
// minify plugin
12
type AllowTransformOpts = Omit<
0 commit comments