Skip to content

Instantly share code, notes, and snippets.

@FaberVitale
Created August 29, 2022 15:55
Show Gist options
  • Save FaberVitale/223a6ea16c16a9916dbec3d928e8bed5 to your computer and use it in GitHub Desktop.
Save FaberVitale/223a6ea16c16a9916dbec3d928e8bed5 to your computer and use it in GitHub Desktop.
/**
* Defines one or more key-value properties
*/
export type WithKeyValue<K extends string | number | symbol, Value> = {
[k in K]: Value;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment