Skip to content

Instantly share code, notes, and snippets.

@stepankuzmin
Created November 25, 2019 09:10
Show Gist options
  • Save stepankuzmin/1565b7ebdf5a351967794d48d71d1422 to your computer and use it in GitHub Desktop.
Save stepankuzmin/1565b7ebdf5a351967794d48d71d1422 to your computer and use it in GitHub Desktop.
type Immutable<T> = {
readonly [K in keyof T]: Immutable<T[K]>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment