Yarn 3 upgrade

This commit is contained in:
2023-07-13 22:44:26 +01:00
parent 1ead1e4a7c
commit 350588680f
23 changed files with 16083 additions and 11086 deletions

View File

@ -29,3 +29,16 @@ declare module "translations/*.json" {
const value: Record<string, string>;
export default value;
}
type EmojiShape = {
[key: string]: {
keywords: Array<string>;
char: string;
fitzpatrick_scale: boolean;
category: string;
};
};
declare module "emojilib" {
const lib: EmojiShape;
}