Last active
June 27, 2024 15:54
-
-
Save object/9bc548b22bd9a968638a97c7a63769a4 to your computer and use it in GitHub Desktop.
Fable workshop (2024). Step 4. Messages.fs
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
| module Messages | |
| type Msg = | |
| | FilenameChanged of string | |
| | PlaybackDelayChanged of string | |
| | StartPlayback | |
| | PausePlayback | |
| | StopPlayback | |
| | NextEvent | |
| | EventsLoaded of string | |
| | EventsError of exn | |
| | Delayed of Msg * delay:int |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment