1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-14 14:42:55 +01:00
server/dist/Schema/Emoji.d.ts

11 lines
221 B
TypeScript
Raw Normal View History

2021-02-05 22:01:01 +01:00
export declare const EmojiSchema: {
name: StringConstructor;
2021-02-06 15:35:02 +01:00
$id: BigIntConstructor;
2021-02-05 22:01:01 +01:00
animated: BooleanConstructor;
};
2021-02-06 15:35:02 +01:00
export interface EmojiSchema {
name: string;
id?: bigint;
animated: Boolean;
}