mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-14 22:33:19 +00:00
14 lines
431 B
TypeScript
14 lines
431 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>;
|
|
|
|
export type MediaAttachment = Immutable.Map<string, unknown>;
|