mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 14:38:07 +01:00
4 lines
171 B
TypeScript
4 lines
171 B
TypeScript
export type StatusVisibility = 'public' | 'unlisted' | 'private' | 'direct';
|
|
|
|
// Temporary until we type it correctly
|
|
export type Status = Immutable.Map<string, unknown>;
|