Last active
August 10, 2020 01:52
-
-
Save pzi/3255d7b029e90cbb90de178016e9bfed to your computer and use it in GitHub Desktop.
TypeScript helper snippets
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
// 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