Skip to content

Commit

Permalink
+ ts api
Browse files Browse the repository at this point in the history
  • Loading branch information
jin committed Jan 9, 2025
1 parent c8fcdd9 commit 287396f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion emoji/safe/safe.json
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
"👩‍❤️‍👨": ["heart-with-woman-and-man"],
"👨‍❤️‍👨": ["heart-with-man-and-man"],
"👩‍❤️‍👩": ["heart-with-woman-and-woman"],
"🤱": ["breast-feeding"],
"🤱": ["breast-feeding"]
},
"Animals and nature": {
"💐": ["bouquet","flowers"],
Expand Down
13 changes: 13 additions & 0 deletions emoji/safe/safe.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
namespace $ {
export function $mol_emoji_safe(
this: $
): Record<
string /*group*/,
Record<
string /*emoji*/,
readonly string[] /*keywords*/
>
> {
return this.$mol_fetch.json( './mol/emoji/safe/safe.json' ) as any
}
}

0 comments on commit 287396f

Please sign in to comment.