When generating the definitions for the Account, a custom field has the type FileType in the generated file. Which package would be needed to be imported? This is the attribute:
custom_logo?: FileType | null;
For now I changed it to string | null, otherwise the type is not found.
When generating the definitions for the Account, a custom field has the type
FileTypein the generated file. Which package would be needed to be imported? This is the attribute:custom_logo?: FileType | null;For now I changed it to
string | null, otherwise the type is not found.