Created
July 11, 2018 09:30
-
-
Save ccapndave/a1041abaeeeff8db4c351af19574b054 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 alias Tree4 level1Data level2Data level3Data leafData = | |
{ data : level1Data | |
, children : Array | |
{ data : level2Data | |
, children : Array | |
{ data : level3Data | |
, children : Array | |
{ data : leafData | |
} | |
} | |
} | |
} | |
type alias MenuTree = Tree4 Menu Course Unit Exercise |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment