Skip to content

Instantly share code, notes, and snippets.

@arbaz52
Created January 3, 2022 05:23
Show Gist options
  • Save arbaz52/a764155eb7f8ed2d841137fadbac3941 to your computer and use it in GitHub Desktop.
Save arbaz52/a764155eb7f8ed2d841137fadbac3941 to your computer and use it in GitHub Desktop.
Rename key inside an interface
export type RenameKey<I, K extends keyof I, N extends PropertyKey> = Omit<
I,
K
> &
{
[P in N]: I[K];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment