Skip to content

Instantly share code, notes, and snippets.

@tlaitinen
Created November 9, 2017 09:36
Show Gist options
  • Select an option

  • Save tlaitinen/ce7e782aee55b2d381aa335ed9f9c2c2 to your computer and use it in GitHub Desktop.

Select an option

Save tlaitinen/ce7e782aee55b2d381aa335ed9f9c2c2 to your computer and use it in GitHub Desktop.
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