Last active
July 2, 2019 14:35
-
-
Save wongjiahau/903ef0424a0fde5f4c98e62ac0eb1fee to your computer and use it in GitHub Desktop.
This file contains 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 Shape = { | |
kind: 'circle' | |
radius: number | |
} | { | |
kind: 'rectangle' | |
width: number | |
height: number | |
} | { | |
kind: 'triangle' | |
base: number | |
height: number | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment