summary refs log tree commit diff
path: root/dist/Schema/Emoji.d.ts
blob: da4770e9319451f6836c02e8102244dc43d14d3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export declare const EmojiSchema: {
    name: StringConstructor;
    $id: BigIntConstructor;
    animated: BooleanConstructor;
};
export interface EmojiSchema {
    name: string;
    id?: bigint;
    animated: Boolean;
}