File tree Expand file tree Collapse file tree 1 file changed +21
-22
lines changed Expand file tree Collapse file tree 1 file changed +21
-22
lines changed Original file line number Diff line number Diff line change @@ -63,25 +63,24 @@ type ESLintCompatiblePostCSSContainer<
63
63
) : false | undefined ;
64
64
} ;
65
65
66
- export type ESLintCompatiblePostCSSNode < PostCSSNode extends Node = Node > =
67
- Locations &
68
- Omit <
69
- PostCSSNode ,
70
- | "each"
71
- | "every"
72
- | "first"
73
- | "index"
74
- | "insertAfter"
75
- | "insertBefore"
76
- | "last"
77
- | "nodes"
78
- | "push"
79
- | "removeChild"
80
- | "some"
81
- | "type"
82
- | "walk"
83
- > & {
84
- type : `SvelteStyle-${PostCSSNode [ "type" ] } `;
85
- } & ( PostCSSNode extends Container < infer Child >
86
- ? ESLintCompatiblePostCSSContainer < PostCSSNode , Child >
87
- : unknown ) ;
66
+ export type ESLintCompatiblePostCSSNode < PostCSSNode extends Node > = Locations &
67
+ Omit <
68
+ PostCSSNode ,
69
+ | "type"
70
+ | "each"
71
+ | "every"
72
+ | "first"
73
+ | "index"
74
+ | "insertAfter"
75
+ | "insertBefore"
76
+ | "last"
77
+ | "nodes"
78
+ | "push"
79
+ | "removeChild"
80
+ | "some"
81
+ | "walk"
82
+ > & {
83
+ type : `SvelteStyle-${PostCSSNode [ "type" ] } `;
84
+ } & ( PostCSSNode extends Container < infer Child >
85
+ ? ESLintCompatiblePostCSSContainer < PostCSSNode , Child >
86
+ : unknown ) ;
You can’t perform that action at this time.
0 commit comments