chore: Add messaging category to CategoryType

This commit is contained in:
Gaspard Wierzbinski 2024-05-02 09:06:28 -10:00 committed by GitHub
parent 4f412a2e32
commit 6de1948ac7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -333,12 +333,14 @@ interface Device {
```typescript
/*
* microblog -> Twitter, Mastodon-style
* forum -> Reddit-style
* blog -> Wordpress, WriteFreely-style
* image -> Instagram-style
* video -> YouTube-style
* audio -> SoundCloud, Spotify-style
* UI examples for each category:
* microblog -> Twitter, Mastodon
* forum -> Reddit
* blog -> Wordpress, WriteFreely
* image -> Instagram
* video -> YouTube
* audio -> SoundCloud, Spotify
* messaging -> Discord, Matrix, Signal
*/
type CategoryType = "microblog" | "forum" | "blog" | "image" | "video" | "audio"
type CategoryType = "microblog" | "forum" | "blog" | "image" | "video" | "audio" | "messaging"
```