one
Version:
One is a new React Framework that makes Vite serve both native and web.
51 lines (42 loc) • 1.38 kB
text/typescript
// 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<string, string>
isEligibleForHandoff?: boolean
isEligibleForPrediction?: boolean
isEligibleForSearch?: boolean
/** Local file path for an image */
imageUrl?: string
darkImageUrl?: string
dateModified?: Date
expirationDate?: Date
}
let HeadModule: {
activities: {
INDEXED_ROUTE: string
}
getLaunchActivity(): UserActivity
createActivity(userActivity: UserActivity): void
clearActivitiesAsync(ids: string[]): Promise<void>
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) {
HeadModule = globalThis.expo?.modules?.HeadModule
}
export { HeadModule }