From 00a93b3b7177429e46cab23e73a14e9d707fc3cb Mon Sep 17 00:00:00 2001 From: ameer2468 <33054370+ameer2468@users.noreply.github.com> Date: Fri, 17 Nov 2023 20:07:10 +0300 Subject: [PATCH] Update Platform.tsx --- interface/util/Platform.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/util/Platform.tsx b/interface/util/Platform.tsx index 884e0704e6b6..0a7301bff04b 100644 --- a/interface/util/Platform.tsx +++ b/interface/util/Platform.tsx @@ -36,8 +36,8 @@ export type Platform = { | { Ephemeral: { path: string } } )[] ): Promise; - requestFdaMacos?: () => void; - hasFda?: () => boolean; + requestFdaMacos?(): void; + hasFda?(): Promise; getFilePathOpenWithApps?(library: string, ids: number[]): Promise; reloadWebview?(): Promise; getEphemeralFilesOpenWithApps?(paths: string[]): Promise;