mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-14 06:32:36 +01:00
11 lines
221 B
TypeScript
11 lines
221 B
TypeScript
export declare const EmojiSchema: {
|
|
name: StringConstructor;
|
|
$id: BigIntConstructor;
|
|
animated: BooleanConstructor;
|
|
};
|
|
export interface EmojiSchema {
|
|
name: string;
|
|
id?: bigint;
|
|
animated: Boolean;
|
|
}
|