Sha256: 285ca047b33fd4a617215c3e932d5cb8e2c996d1c2c46bab2f920f08eef7914a
Contents?: true
Size: 328 Bytes
Versions: 12
Compression:
Stored size: 328 Bytes
Contents
# typed: strict module Typed class DeserializeError < SerializationError extend T::Sig sig { returns({error: String}) } def to_h {error: message} end sig { params(_options: T::Hash[T.untyped, T.untyped]).returns(String) } def to_json(_options = {}) JSON.generate(to_h) end end end
Version data entries
12 entries across 12 versions & 1 rubygems