Skip to content

Commit

Permalink
fix: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mrousavy committed Nov 17, 2023
1 parent a887ef9 commit c0a3093
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/types/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ export type Headers = Record<string, string>;

export type ReactVideoSource =
| Readonly<{
uri?: string
isNetwork?: boolean
isAsset?: boolean
shouldCache?: boolean
type?: string
mainVer?: number
patchVer?: number
headers?: Headers
startTime?: number
endTime?: number
title?: string
subtitle?: string
description?: string
customImageUri?: string
uri?: string;
isNetwork?: boolean;
isAsset?: boolean;
shouldCache?: boolean;
type?: string;
mainVer?: number;
patchVer?: number;
headers?: Headers;
startTime?: number;
endTime?: number;
title?: string;
subtitle?: string;
description?: string;
customImageUri?: string;
}>
| NodeRequire;

Expand Down

0 comments on commit c0a3093

Please sign in to comment.