Files
clice/include/Protocol/Feature/ExecuteCommand.h
2026-01-26 01:01:39 +08:00

18 lines
272 B
C++

#pragma once
#include "../Basic.h"
namespace clice::proto {
struct ExecuteCommandParams {
string command;
array<any> arguments;
};
struct TextDocumentParams {
/// The text document.
TextDocumentIdentifier textDocument;
};
} // namespace clice::proto