Created
November 9, 2017 09:36
-
-
Save tlaitinen/ce7e782aee55b2d381aa335ed9f9c2c2 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 Map<A extends "A" | "B"> = { | |
| "A": "A!", | |
| "B": "B!" | |
| }[A]; | |
| type AA = Map<"A">; | |
| type BB = Map<"B">; | |
| let a:AA = "A!"; | |
| let b:BB = "B!"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment