Skip to content

Instantly share code, notes, and snippets.

@Sammons
Last active November 6, 2018 04:10
Show Gist options
  • Save Sammons/55e3a72b016535a334d17c42264105eb to your computer and use it in GitHub Desktop.
Save Sammons/55e3a72b016535a334d17c42264105eb to your computer and use it in GitHub Desktop.
function StrEnum<Elements extends string[]>(...elements: Elements) {
const result = {} as { [K in Elements[number]]: K };
elements.forEach(e => {
(result as any)[e] = e
});
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment