Created
June 14, 2019 07:56
-
-
Save KumoKairo/ec4cc30c1d9446d84fe408572248b9a8 to your computer and use it in GitHub Desktop.
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
type FadeToBgCommand = { | |
background: string | |
} | |
type PlayMusicCommand = { | |
trackName: string | |
} | |
type LockClosetCommand = {} | |
type Command = | |
| FadeToBgCommand | |
| PlayMusicCommand | |
| LockClosetCommand |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment