Created
April 20, 2021 14:37
-
-
Save pablobaldez/37c1f7ad8fbf6e3ca4a4c79cb7d146c4 to your computer and use it in GitHub Desktop.
Group interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Group<T> { | |
/** | |
* the light mode group of colors | |
*/ | |
val light: T | |
/** | |
* the dark mode group of colors | |
*/ | |
val dark: T | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment