Home

tailwind-ctp-intellisense @2c1a52054771acdd2e8ba507a92980b89f08f36e - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / packages / tailwindcss-language-server / src / util / state.ts
- raw
 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { TextDocuments, Connection, Range } 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
  documentSettings: Map<string, Settings>
  globalSettings: Settings
  capabilities: {
    configuration: boolean
  }
}

export type Settings = {
  emmetCompletions: boolean
}

export type State = null | {
  enabled: boolean
  configPath?: string
  config?: any
  separator?: string
  plugins?: any[]
  variants?: string[]
  classNames?: ClassNames
  dependencies?: string[]
  editor?: EditorState
  error?: Error
}

export type DocumentClassList = {
  classList: string
  range: Range
}

export type DocumentClassName = {
  className: string
  range: Range
}