Type Alias IGenerateModelsOptions
IGenerateModelsOptions: { columnsFunc?: ((tableName: string,
columns: Record<string, ITableColumn>) => Record<string, ITableColumn>); formatFunc?: ((tableName: string,
json: any) => any); parseFunc?: ((tableName: string,
json: any) => any); relationsFunc?: ((tableName: string,
relations: RelationMappings) => RelationMappings); squemaFixings?: ((tableName: string,
schema: Record<string, JSONSchema>) => Record<string, JSONSchema>); }