[Glitch] Remove global boosts state and convert boosts modal to Typescript

Port 67442f9039 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Renaud Chaput
2024-03-28 16:33:15 +01:00
committed by Claire
parent 0f90e624c5
commit b3d5567bd0
13 changed files with 185 additions and 206 deletions

View File

@@ -0,0 +1,4 @@
export type StatusVisibility = 'public' | 'unlisted' | 'private' | 'direct';
// Temporary until we type it correctly
export type Status = Immutable.Map<string, unknown>;