sig/ika3/schedule.rbs in ika3-0.10.0 vs sig/ika3/schedule.rbs in ika3-1.0.0
- old
+ new
@@ -19,33 +19,35 @@
class Battle
@start_time: untyped
@end_time: untyped
@rule: Rule
@stages: Array[Stage]
- @is_fest: untyped
+ @is_fest: bool
+ @is_tricolor: bool
+ @tricolor_stage: Stage?
def initialize: (Hash[untyped, untyped] data) -> void
class Stage
@id: untyped
@name: String
- @image: untyped
+ @image: String
def initialize: (Hash[untyped, untyped] data) -> void
end
class Rule
- @name: untyped
+ @name: String
@key: untyped
def initialize: (Hash[untyped, untyped] data) -> void
end
end
class Salmon
@start_time: untyped
@end_time: untyped
@stage: Stage
@weapons: Array[Weapon]
- @boss: untyped
+ @boss: Boss?
def initialize: (Hash[untyped, untyped] data) -> void
class Stage
@name: String
@image: untyped
@@ -57,11 +59,11 @@
@image: String
def initialize: (Hash[untyped, untyped] data) -> void
end
class Boss
+ @id: String
@name: String
- @image: String
def initialize: (Hash[untyped, untyped] data) -> void
end
end
end
end