20 lines
381 B
C++
20 lines
381 B
C++
#pragma once
|
|
|
|
#include "../Basic.h"
|
|
|
|
namespace clice::proto {
|
|
|
|
struct DocumentFormattingClientCapabilities {};
|
|
|
|
using DocumentFormattingOptions = bool;
|
|
|
|
struct DocumentRangeFormattingClientCapabilities {};
|
|
|
|
using DocumentRangeFormattingOptions = bool;
|
|
|
|
struct DocumentOnTypeFormattingClientCapabilities {};
|
|
|
|
struct DocumentOnTypeFormattingOptions {};
|
|
|
|
} // namespace clice::proto
|