Deletes Blanks

This commit is contained in:
Muhammad Nawzad 2023-11-09 16:57:20 +03:00
parent 01d459bf5c
commit 8b00983c57
No known key found for this signature in database
GPG Key ID: B954B6AAE33940B2
2 changed files with 1 additions and 5 deletions

View File

@ -8,7 +8,6 @@ module Schemable
def initialize: (Definition, Configuration) -> void
def generate_attributes_schema: -> (Hash[Symbol, any] | Array[any])
def generate_attribute_schema: (Symbol) -> Hash[Symbol, any]
end
end

View File

@ -1,6 +1,5 @@
module Schemable
class Configuration
attr_accessor orm: Symbol
attr_accessor timestamps: bool
attr_accessor float_as_string: bool
@ -14,9 +13,7 @@ module Schemable
def initialize: -> void
def add_custom_type_mapper: (Symbol, Hash[Symbol, any]) -> void
def type_mapper: (Symbol) -> Hash[Symbol, any]
def add_custom_type_mapper: (Symbol, Hash[Symbol, any]) -> void
end
end