monkeeShark/packages/megalodon/src/misskey/entities/emoji.ts

10 lines
155 B
TypeScript
Raw Normal View History

2023-09-23 16:49:47 +00:00
namespace MisskeyEntity {
2023-09-24 23:20:03 +00:00
export type Emoji = {
name: string;
host: string | null;
url: string;
aliases: Array<string>;
category: string;
};
2023-09-23 16:49:47 +00:00
}