Type Alias IGenerateModelsOptions
IGenerateModelsOptions: {
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>);
}