# Omit

`import { Omit } from "destack:types";`

Remove fields `K` from `T`.

```ds title="Omit"
export type Omit<T, K: PropertyKey> = Pick<T, Exclude<keyof T, K>>
```

[language/library/src/types/object.ds:44](https://github.com/destack-sh/destack/blob/main/language/library/src/types/object.ds#L44)
