lib/onebusaway_sdk/internal.rb



# frozen_string_literal: true

module OnebusawaySDK
  module Internal
    extend OnebusawaySDK::Internal::Util::SorbetRuntimeSupport

    OMIT =
      Object.new.tap do
        _1.define_singleton_method(:inspect) { "#<#{OnebusawaySDK::Internal}::OMIT>" }
      end
        .freeze

    define_sorbet_constant!(:AnyHash) do
      T.type_alias { T::Hash[Symbol, T.anything] }
    end
  end
end