Skip to content

Instantly share code, notes, and snippets.

@wongjiahau
Last active July 2, 2019 14:35
Show Gist options
  • Save wongjiahau/903ef0424a0fde5f4c98e62ac0eb1fee to your computer and use it in GitHub Desktop.
Save wongjiahau/903ef0424a0fde5f4c98e62ac0eb1fee to your computer and use it in GitHub Desktop.
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