https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import { TextDocuments, Connection } from 'vscode-languageserver' export type ClassNamesTree = { [key: string]: ClassNamesTree } export type ClassNamesContext = { [key: string]: string[] } export type ClassNames = { context: ClassNamesContext classNames: ClassNamesTree } export type EditorState = { connection: Connection documents: TextDocuments } export type State = null | { config: any separator: string plugins: any[] variants: string[] classNames: ClassNames dependencies: string[] editor: EditorState }