# sig/kanjika/conjugator/base.rbs class Kanjika::Conjugator::Base def self.conjugate: () -> untyped def conjugate: () -> untyped def initialize: () -> void end # sig/kanjika/conjugator/masu.rbs class Kanjika::Conjugator::Masu < Kanjika::Conjugator::Base def apply_conjugation_rule: () -> untyped def conjugate: () -> untyped def conjugate_others: () -> untyped def conjugate_token: () -> untyped def conjugate_verb: () -> untyped def determine_verb_type: () -> untyped def ending_in_e_or_i?: () -> untyped def godan?: () -> untyped def godan_ending?: () -> untyped def ichidan?: () -> untyped def irregular?: () -> untyped def stem: () -> untyped end # sig/kanjika/conjugator/te.rbs class Kanjika::Conjugator::Te < Kanjika::Conjugator::Base def apply_conjugation_rule: () -> untyped def conjugate: () -> untyped def conjugate_others: () -> untyped def conjugate_token: () -> untyped def conjugate_verb: () -> untyped def determine_verb_type: () -> untyped def ending_in_e_or_i?: () -> untyped def godan?: () -> untyped def godan_ending?: () -> untyped def ichidan?: () -> untyped def irregular?: () -> untyped def stem: () -> untyped end