39 lines
878 B
Plaintext
Raw Normal View History

# typed: true
# DO NOT EDIT MANUALLY
# This is an autogenerated file for types exported from the `unf` gem.
# Please instead update this file by running `bin/tapioca gem unf`.
2023-12-14 15:34:15 +00:00
# source://unf//lib/unf/version.rb#1
module UNF; end
2023-12-14 15:34:15 +00:00
# UTF-8 string normalizer class. Implementations may vary depending
# on the platform.
#
# source://unf//lib/unf/normalizer.rb#10
class UNF::Normalizer
include ::Singleton
extend ::Singleton::SingletonClassMethods
2023-12-14 15:34:15 +00:00
# @return [Normalizer] a new instance of Normalizer
def initialize; end
def normalize(_arg0, _arg1); end
class << self
2023-12-14 15:34:15 +00:00
def new(*_arg0); end
# A shortcut for instance.normalize(string, form).
#
# source://unf//lib/unf/normalizer.rb#24
def normalize(string, form); end
2023-12-14 15:34:15 +00:00
private
def allocate; end
end
end
2023-12-14 15:34:15 +00:00
# source://unf//lib/unf/version.rb#2
UNF::VERSION = T.let(T.unsafe(nil), String)