hensei-api/sig/granblue/importers/import_error.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

20 lines
438 B
Text

# frozen_string_literal: true
module Granblue
module Importers
class ImportError
attr_reader file_name: String
attr_reader details: String
def initialize: (file_name: String, details: String) -> void
private
def build_message: () -> String
end
def format_attributes: (
attributes: Hash[Symbol, String | Integer | Float | Boolean | Array[untyped] | nil]
) -> String
end
end