# File

A React Native File object used to send files

```typescript
interface File {
    uri: string;
    fileName?: string;
    type: string;
}
```

#### Properties

<table><thead><tr><th width="136">Field</th><th width="104">Type</th><th width="98">State</th><th>Description</th></tr></thead><tbody><tr><td><code>uri</code></td><td><code>string</code></td><td><em>required</em></td><td>the uri to the file</td></tr><tr><td><code>fileName</code></td><td><code>string</code></td><td><em>optional</em></td><td>the name of the file</td></tr><tr><td><code>type</code></td><td><code>string</code></td><td>required</td><td>the file type i.e <code>image/jpeg</code></td></tr></tbody></table>
