Skip to content

Instantly share code, notes, and snippets.

@Graniron
Created October 4, 2021 09:44
Show Gist options
  • Save Graniron/fa457cf296c09ad302b2052730712090 to your computer and use it in GitHub Desktop.
Save Graniron/fa457cf296c09ad302b2052730712090 to your computer and use it in GitHub Desktop.
enum Status {
DONE: 'done',
ERROR: 'error'
}
const a: Partial<Record<Status, string>> = {}
// or
const a: { [K in Status]?: string } = {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment