mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-09 21:46:56 +01:00
5 lines
171 B
TypeScript
5 lines
171 B
TypeScript
|
export type StatusVisibility = 'public' | 'unlisted' | 'private' | 'direct';
|
||
|
|
||
|
// Temporary until we type it correctly
|
||
|
export type Status = Immutable.Map<string, unknown>;
|