fix: types

This commit is contained in:
DIYgod 2025-02-09 15:23:18 +08:00
parent bb0db13dc1
commit dee24dc7d7
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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) => {