0
0
Fork 0

Add timeline of public posts about a trending link in web UI (#30840)

This commit is contained in:
Eugen Rochko 2024-07-01 16:45:48 +02:00 committed by GitHub
parent aeefe5b2be
commit 20fa9ce484
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 97 additions and 1 deletions

View file

@ -1,4 +1,12 @@
import type { RecordOf } from 'immutable';
import type { ApiPreviewCardJSON } from 'mastodon/api_types/statuses';
export type { StatusVisibility } from 'mastodon/api_types/statuses';
// Temporary until we type it correctly
export type Status = Immutable.Map<string, unknown>;
type CardShape = Required<ApiPreviewCardJSON>;
export type Card = RecordOf<CardShape>;