Skip to content

Instantly share code, notes, and snippets.

@dagda1
Created January 28, 2019 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dagda1/0aad0b1fecff8f75a5d8c513df533e53 to your computer and use it in GitHub Desktop.
Save dagda1/0aad0b1fecff8f75a5d8c513df533e53 to your computer and use it in GitHub Desktop.
export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment