export const isFile = (obj: any): obj is File => {
  return isObject(obj) && obj.content !== undefined
}