I have a FileField ``` flyer = models.FileField( _("Flyer"), upload_to="uploads/flyers", max_length=100, null=True, blank=True ) ``` and the type generated looks like this: ``` flyer?: File | null; ``` Shouldn't it just be a string?
I have a FileField
and the type generated looks like this:
Shouldn't it just be a string?