# File rbs-2.0.0/lib/rbs/ast/declarations.rb, line 231
def initialize(name:, type_params:, members:, annotations:, location:, comment:)
  @name = name
  @type_params = type_params
  @members = members
  @annotations = annotations
  @location = location
  @comment = comment
end
             
             
               # File rbs-2.0.0/lib/rbs/ast/declarations.rb, line 240
def ==(other)
  other.is_a?(Interface) &&
    other.name == name &&
    other.type_params == type_params &&
    other.members == members
end