// isEligibleForPrediction // https://developer.apple.com/documentation/foundation/nsuseractivity/2980674-iseligibleforprediction export type UserActivity = { id?: string /** * The activity title should be clear and concise. This text describes the content of the link, like “Photo taken on July 27, 2020” or “Conversation with Maria”. Use nouns for activity titles. */ title?: string description?: string webpageURL?: string keywords?: string[] // TODO: Get this automatically somehow activityType: string // TODO: Maybe something like robots.txt? phrase?: string thumbnailURL?: string userInfo?: Record isEligibleForHandoff?: boolean isEligibleForPrediction?: boolean isEligibleForSearch?: boolean /** Local file path for an image */ imageUrl?: string darkImageUrl?: string dateModified?: Date expirationDate?: Date } let ExpoHead: { activities: { INDEXED_ROUTE: string } getLaunchActivity(): UserActivity createActivity(userActivity: UserActivity): void clearActivitiesAsync(ids: string[]): Promise suspendActivity(id: string): void revokeActivity(id: string): void } | null = null // If running in Expo Go. // @ts-ignore if (typeof expo !== 'undefined' && globalThis.expo?.modules?.ExpoGo) { ExpoHead = globalThis.expo?.modules?.ExpoHead } export { ExpoHead }