mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-08 10:45:22 +01:00
12 lines
368 B
TypeScript
12 lines
368 B
TypeScript
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>;
|