ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1export type AppStep = 2 | "checking" 3 | "login" 4 | "home" 5 | "upload" 6 | "loading" 7 | "results"; 8 9export interface Upload { 10 uploadId: string; 11 sourcePlatform: string; 12 createdAt: string; 13 totalUsers: number; 14 matchedUsers: number; 15 unmatchedUsers: number; 16} 17 18export interface SaveResultsResponse { 19 success: boolean; 20 uploadId: string; 21 totalUsers: number; 22 matchedUsers: number; 23 unmatchedUsers: number; 24}