first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
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[];
activityType: string;
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;
};
declare let ExpoHead: {
activities: {
INDEXED_ROUTE: string;
};
getLaunchActivity(): UserActivity;
createActivity(userActivity: UserActivity): void;
clearActivitiesAsync(ids: string[]): Promise<void>;
suspendActivity(id: string): void;
revokeActivity(id: string): void;
} | null;
export { ExpoHead };
//# sourceMappingURL=ExpoHeadModule.d.ts.map