Skip to content

Instantly share code, notes, and snippets.

@pzi
Last active August 10, 2020 01:52
Show Gist options
  • Save pzi/3255d7b029e90cbb90de178016e9bfed to your computer and use it in GitHub Desktop.
Save pzi/3255d7b029e90cbb90de178016e9bfed to your computer and use it in GitHub Desktop.
TypeScript helper snippets
// Typed object keys
export const objectKeys = Object.keys as <T>(o: T) => (Extract<keyof T, string>)[];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment