# Partial

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

Make each field of `T` optional.

```ds title="Partial"
export type Partial<T> = { [K in keyof T]?: T[K] }
```

[language/library/src/types/object.ds:13:15](https://github.com/destack-sh/destack/blob/main/language/library/src/types/object.ds#L13-L15)
