Sha256: 6c996cb4817f8bb4eda3aa47b3178045eeaecd1d70f1d35e867b95f2c9068a30
Contents?: true
Size: 425 Bytes
Versions: 4
Compression:
Stored size: 425 Bytes
Contents
module LanguageServer module Protocol module Interface # # Color provider options. # class ColorProviderOptions def initialize() @attributes = {} @attributes.freeze end attr_reader :attributes def to_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems