Skip to content

Commit

Permalink
feat: rework core modules for better alignment with new emoji structure
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Feb 23, 2025
1 parent f03511c commit ee7aaed
Show file tree
Hide file tree
Showing 25 changed files with 190 additions and 22,387 deletions.
40 changes: 40 additions & 0 deletions .idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/material_theme_project_new.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,15 @@
package io.wax911.emojify.contract.model

/**
* @property aliases a list of aliases for this emoji
* @property description the (optional) description of the emoji
* @property description the description of the emoji
* @property emoji unicode emoji
* @property emojiChar actual raw emoji
* @property supportsFitzpatrick true if the emoji supports the Fitzpatrick modifiers, else false
* @property supportsGender true if the emoji supports the gender modifiers, else false
* @property tags a list of tags for this emoji
*/
interface IEmoji {
val aliases: List<String>?
val description: String?
val emoji: String
val emojiChar: String
val description: String
val supportsFitzpatrick: Boolean
val supportsGender: Boolean
val tags: List<String>?
val unicode: String
val htmlDec: String
Expand Down
Loading

0 comments on commit ee7aaed

Please sign in to comment.