File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
packages/tailwindcss-language-service/src/util Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,11 @@ export interface Variant {
88
88
selectors : ( params ?: { value ?: string ; label ?: string } ) => string [ ]
89
89
}
90
90
91
+ export interface ClassMetadata {
92
+ color : culori . Color | KeywordColor | null
93
+ modifiers ?: string [ ]
94
+ }
95
+
91
96
export interface State {
92
97
enabled : boolean
93
98
isCssConfig ?: boolean
@@ -126,7 +131,7 @@ export interface State {
126
131
editor ?: EditorState
127
132
jit ?: boolean
128
133
jitContext ?: any
129
- classList ?: Array < [ string , { color : culori . Color | KeywordColor | null ; modifiers ?: string [ ] } ] >
134
+ classList ?: Array < [ string , ClassMetadata ] >
130
135
classListContainsMetadata ?: boolean
131
136
pluginVersions ?: string
132
137
completionItemData ?: Record < string , any >
You can’t perform that action at this time.
0 commit comments