Select the types of activity you want to include in your feed.
1import {type OAuthSession} from '@atproto/oauth-client-expo' 2 3import {getNativeOAuthClient} from './oauth-native-client' 4 5export function restoreOAuthSession(did: string): Promise<OAuthSession> { 6 return getNativeOAuthClient().restore(did) 7}