summary refs log tree commit diff
path: root/dist/server-util/src/models/Emoji.d.ts
blob: e2f639dbfd6a7bb09aa5ce807b2a54a44a3d5e28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export interface Emoji {
    allNamesString: string;
    animated: boolean;
    available: boolean;
    guildId: bigint;
    id: bigint;
    managed: boolean;
    name: string;
    require_colons: boolean;
    url: string;
    roles: [];
}