mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 21:23:24 +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;
|
|
}
|