feat: mute list

This commit is contained in:
2023-07-30 00:26:16 +02:00
parent 99e5b9688f
commit 0a5623e74f
12 changed files with 248 additions and 97 deletions

22
src/types.ts Normal file
View File

@ -0,0 +1,22 @@
export interface RelaySettings {
read: boolean;
write: boolean;
}
export interface Relays {
[key: string]: RelaySettings;
}
export type EmojiTag = ["emoji", string, string];
export interface Emoji {
native?: string;
id?: string;
}
export interface EmojiPack {
address: string;
name: string;
author: string;
emojis: EmojiTag[];
}