Skip to content

Commit

Permalink
Delete unnecessary exports.
Browse files Browse the repository at this point in the history
  • Loading branch information
taichi221228 committed Aug 16, 2023
1 parent 3e3a084 commit 969c6de
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/javascript/mastodon/features/emoji/emoji_compressed.d.ts
Expand Up @@ -13,20 +13,20 @@ export type Search = string;
* This could be a potential area of refactoring or error handling.
* The non-existence of 'skins' property is evident at [this location]{@link app/javascript/mastodon/features/emoji/emoji_compressed.js:121}.
*/
export type Skins = null;
type Skins = null;

export type Filename = string;
export type UnicodeFilename = string;
type Filename = string;
type UnicodeFilename = string;
export type FilenameData = [
filename: Filename,
unicodeFilename?: UnicodeFilename
unicodeFilename?: UnicodeFilename,
][];
export type ShortCodesToEmojiDataKey =
| EmojiData['id']
| BaseEmoji['native']
| keyof NimbleEmojiIndex['emojis'];

export type SearchData = [
type SearchData = [
BaseEmoji['native'],
Emoji['short_names'],
Search,
Expand All @@ -37,9 +37,9 @@ export type ShortCodesToEmojiData = Record<
ShortCodesToEmojiDataKey,
[FilenameData, SearchData]
>;
export type EmojisWithoutShortCodes = FilenameData[];
type EmojisWithoutShortCodes = FilenameData[];

export type EmojiCompressed = [
type EmojiCompressed = [
ShortCodesToEmojiData,
Skins,
Category[],
Expand Down

0 comments on commit 969c6de

Please sign in to comment.