This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
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;
}