mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 07:25:27 +02:00
12 lines
242 B
Go
12 lines
242 B
Go
package docvalues
|
|
|
|
import (
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type Value interface {
|
|
GetTypeDescription() []string
|
|
CheckIsValid(value string) error
|
|
FetchCompletions(line string, cursor uint32) []protocol.CompletionItem
|
|
}
|