lib/lithic/type.rb



# frozen_string_literal: true

module Lithic
  Unknown = Lithic::Type::Unknown

  BooleanModel = Lithic::Type::BooleanModel

  Enum = Lithic::Type::Enum

  Union = Lithic::Type::Union

  ArrayOf = Lithic::Type::ArrayOf

  HashOf = Lithic::Type::HashOf

  BaseModel = Lithic::Type::BaseModel

  RequestParameters = Lithic::Type::RequestParameters

  # This module contains various type declarations.
  module Type
  end
end