From c0a30935eeb2c9fcb0cc34f2eea0feafc293f570 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Fri, 17 Nov 2023 15:29:37 +0100 Subject: [PATCH] fix: Fix lint --- src/types/video.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/types/video.ts b/src/types/video.ts index c34c1ba345..65e7cf7d23 100644 --- a/src/types/video.ts +++ b/src/types/video.ts @@ -8,20 +8,20 @@ export type Headers = Record; 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;