2025-10-15 10:12:44 +03:00

14 lines
323 B
Go

package project
import (
"context"
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/lsp/lsproto"
)
type Client interface {
WatchFiles(ctx context.Context, id WatcherID, watchers []*lsproto.FileSystemWatcher) error
UnwatchFiles(ctx context.Context, id WatcherID) error
RefreshDiagnostics(ctx context.Context) error
}