File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,17 +26,17 @@ async function run() {
2626
2727 const typesString = `${ BANNER }
2828export type EmojiKey = ${ Object . keys ( emojiUrls ) . map ( ( name ) => `"${ name } "` ) . join ( "\n | " ) } | (string & {});
29- `;
29+ ` ;
3030
3131 await writeFile ( "./src/types.ts" , typesString ) ;
3232
3333 const constantsString = `${ BANNER }
3434import type { EmojiKey } from "./types";
3535
3636export const EMOJI_KEYS = [
37- ${ Object . entries ( emojiUrls ) . map ( ( [ name ] ) => `"${ name } "` ) . join ( ",\n " ) }
37+ ${ Object . entries ( emojiUrls ) . map ( ( [ name ] ) => `"${ name } "` ) . join ( ",\n " ) } ,
3838] as readonly EmojiKey[];
39- `;
39+ ` ;
4040
4141 await writeFile ( "./src/constants.ts" , constantsString ) ;
4242
Original file line number Diff line number Diff line change @@ -1939,6 +1939,5 @@ export const EMOJI_KEYS = [
19391939 "zombie" ,
19401940 "zombie_man" ,
19411941 "zombie_woman" ,
1942- "zzz"
1942+ "zzz" ,
19431943] as readonly EmojiKey [ ] ;
1944-
Original file line number Diff line number Diff line change @@ -1937,4 +1937,3 @@ export type EmojiKey = "100"
19371937 | "zombie_man"
19381938 | "zombie_woman"
19391939 | "zzz" | ( string & { } ) ;
1940-
You can’t perform that action at this time.
0 commit comments