Skip to content

Instantly share code, notes, and snippets.

@codegamc
Created November 14, 2017 21:30
Show Gist options
  • Save codegamc/0a72d5a272ade362c06429233fdb8866 to your computer and use it in GitHub Desktop.
Save codegamc/0a72d5a272ade362c06429233fdb8866 to your computer and use it in GitHub Desktop.
Simple Typescript map-like object (typed)
let x: {[key: KeyType]: ValueType} = {}
x[key] = value;
let v: ValueType = x[key];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment