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