From dee24dc7d77ee3388c388b072c4b4664c3570930 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Sun, 9 Feb 2025 15:23:18 +0800 Subject: [PATCH] fix: types --- apps/mobile/src/lib/native/index.ios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mobile/src/lib/native/index.ios.ts b/apps/mobile/src/lib/native/index.ios.ts index 55c4b14a6..62527a570 100644 --- a/apps/mobile/src/lib/native/index.ios.ts +++ b/apps/mobile/src/lib/native/index.ios.ts @@ -2,7 +2,7 @@ import { requireNativeModule } from "expo" interface NativeModule { openLink: (url: string) => void - previewImage: (images: Uint8Array[]) => void + previewImage: (images: string[]) => void } const nativeModule = requireNativeModule("Helper") as NativeModule export const openLink = (url: string) => {