hensei-api/sig/granblue/transformers/summon_transformer.rbs
Justin Edmund 7d164b540c
Adds documentation to some lib functions (#168)
* Add sigs and docs to transformers

* Add sigs and docs to downloaders

* Adds sigs and docs to importers
2025-01-18 03:09:29 -08:00

17 lines
421 B
Text

module Granblue
module Transformers
class SummonTransformer < BaseTransformer
TRANSCENDENCE_LEVELS: Array[Integer]
@quick_summon_id: String?
def initialize: (untyped data, ?String? quick_summon_id, ?Hash[Symbol, untyped] options) -> void
def transform: -> Array[Hash[Symbol, untyped]]
private
def calculate_transcendence_level: (Integer? level) -> Integer
end
end
end