add instance custom emojis to responses

This commit is contained in:
2025-07-06 14:39:45 +00:00
parent 9a7cd118b3
commit e2ce397118
2 changed files with 40 additions and 1 deletions

9
types.d.ts vendored
View File

@ -73,6 +73,15 @@ export interface Mention {
username: string;
}
export interface PleromaEmoji {
[emojiName: string]: PleromaEmojiMetadata;
}
interface PleromaEmojiMetadata {
image_url: string;
tags: string[];
}
/**
* Experimental settings, I wouldn't recommend messing with these if you don't know how they work (I don't either)
*/