mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-29 11:59:03 +01:00
9b5f073cb3
Port 89df27a06c
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
14 lines
445 B
TypeScript
14 lines
445 B
TypeScript
import type { RecordOf } from 'immutable';
|
|
|
|
import type { ApiPreviewCardJSON } from 'flavours/glitch/api_types/statuses';
|
|
|
|
export type { StatusVisibility } from 'flavours/glitch/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>;
|