16 lines
391 B
TypeScript
16 lines
391 B
TypeScript
/**
|
|
* Enumeration of the supported fediverse projects.
|
|
*
|
|
* The values of this enum are used as the keys for the fediverse.observer API,
|
|
* as the icon names, etc.
|
|
*/
|
|
export enum FediverseProject {
|
|
Akkoma = "akkoma",
|
|
Friendica = "friendica",
|
|
GNUSocial = "gnusocial",
|
|
Hometown = "hometown",
|
|
Hubzilla = "hubzilla",
|
|
Mastodon = "mastodon",
|
|
Misskey = "misskey",
|
|
Pleroma = "pleroma",
|
|
}
|