We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf2125 commit 003418fCopy full SHA for 003418f
src/ast/style.ts
@@ -1,4 +1,4 @@
1
-import type { Container, Node, Root } from "postcss";
+import type { ChildNode, Container, Node, Root } from "postcss";
2
import type { Locations } from "./common";
3
import type { SvelteStyleElement } from "./html";
4
@@ -8,7 +8,7 @@ type ESLintCompatiblePostCSSContainer<Child extends Node> = Omit<
8
> & {
9
walk(
10
callback: (
11
- node: ESLintCompatiblePostCSSNode<Child>,
+ node: ESLintCompatiblePostCSSNode<ChildNode>,
12
index: number
13
) => false | void
14
): false | undefined;
0 commit comments