1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 18:51:36 +02:00
server/dist/Schema/Emoji.d.ts
2021-02-06 15:35:02 +01:00

11 lines
221 B
TypeScript

export declare const EmojiSchema: {
name: StringConstructor;
$id: BigIntConstructor;
animated: BooleanConstructor;
};
export interface EmojiSchema {
name: string;
id?: bigint;
animated: Boolean;
}