Created
July 29, 2020 21:44
-
-
Save sudomaxime/219ccaa94526dbba8a821d5da7b8d124 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
interface Point { x: number; } | |
interface Point { y: number; } | |
const point: Point = { x: 1, y: 2 }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment