1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
This commit is contained in:
xmflsct
2023-01-05 00:49:10 +01:00
parent bb9fa0c752
commit feadcc019c
7 changed files with 28 additions and 17 deletions

View File

@ -92,7 +92,8 @@ export type ScreenTabsScreenProps<T extends keyof ScreenTabsStackParamList> = Bo
export type TabSharedStackParamList = {
'Tab-Shared-Account': {
account: Pick<Mastodon.Account, 'id' | 'username' | 'acct' | 'url' | '_remote'>
account: Partial<Pick<Mastodon.Account, 'id' | 'url' | '_remote'>> &
Pick<Mastodon.Account, 'acct' | 'url'>
queryKey?: QueryKeyTimeline
}
'Tab-Shared-Account-In-Lists': { account: Pick<Mastodon.Account, 'id' | 'username'> }