---
title: FileLike
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.2/packages/file-storage/src/lib/file-storage.ts#L5
---

# FileLike

## Summary

A value that implements the TypeScript [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File)
interface. This may be a native `File` or a structurally compatible implementation.

## Signature

```ts
type FileLike = File;

```