[TS] Fix alerts API types

This commit is contained in:
Beef 2023-04-06 00:08:48 +01:00
parent 5461065db8
commit cfdee54d8e
3 changed files with 12 additions and 13 deletions

View file

@ -26,7 +26,6 @@ export default function InstallButton({ alertTitle, installFunction: fetchFuncti
placeholder: "https://example.com/",
onConfirm: (input: string) => fetchFunction(input),
confirmText: "Install",
confirmColor: undefined,
cancelText: "Cancel"
})
)

View file

@ -1,5 +1,5 @@
import { ButtonColors, Theme } from "@types";
import { ReactNative as RN, clipboard } from "@metro/common";
import { clipboard } from "@metro/common";
import { fetchTheme, removeTheme, selectTheme } from "@lib/themes";
import { BundleUpdaterManager } from "@lib/native";
import { getAssetIDByName } from "@ui/assets";