1
0
Fork 0
freesewing/markdown/dev/reference/api/settings/only/en.md
2022-02-19 08:04:25 +01:00

17 lines
329 B
Markdown

---
title: only
---
The `only` setting allows you to specify one or more parts to
draft/render, rather than the entire pattern.
It accepts either a single part name as a string, or an array of
one or more part names.
```js
import Brian from "@freesewing/brian";
const pattern = new Brian({
only: ["front", "sleeve"]
})
```