10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
|
namespace MisskeyEntity {
|
||
|
export type Emoji = {
|
||
|
name: string;
|
||
|
host: string | null;
|
||
|
url: string;
|
||
|
aliases: Array<string>;
|
||
|
category: string;
|
||
|
};
|
||
|
}
|