Merge branch 'main' of github.com:lysand-org/docs

This commit is contained in:
Jesse Wierzbinski 2024-05-13 08:36:46 -10:00
commit cc2608366c
No known key found for this signature in database

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"
```