module T::Helpers

def mixes_in_class_methods(mod)

Except that it is statically analyzed by sorbet.

end
other.extend(mod)
def self.included(other)

Nearly equivalent to

Causes a mixin to also mix in class methods from the named module.
def mixes_in_class_methods(mod)
  Private::Mixins.declare_mixes_in_class_methods(self, mod)
end