2022-09-20 18:09:28 +02:00
|
|
|
---
|
|
|
|
title: Pattern.getConfig()
|
|
|
|
---
|
|
|
|
|
|
|
|
You can call `Pattern.getConfig()` to retrieve a pattern's runtime configuration.
|
|
|
|
|
|
|
|
Doing so will resolve all dependencies, load all the plugins, and do all other
|
|
|
|
housekeeping tasks that are typically done behind the scenes when you call
|
|
|
|
`Pattern.draft()`. But it will stop short of drafting the pattern, and instead
|
|
|
|
return a Pattern's internal configuration.
|
|
|
|
|
|
|
|
You can use this to see what options a pattern provides, what
|
2022-12-08 20:40:31 -08:00
|
|
|
measurements it requires, and so on.
|
2022-09-20 18:09:28 +02:00
|
|
|
|
|
|
|
## Pattern.getConfig() signature
|
|
|
|
|
|
|
|
```js
|
|
|
|
object pattern.getConfig()
|
|
|
|
```
|
|
|
|
|
|
|
|
## Pattern.getConfig() example
|
|
|
|
|
|
|
|
```js
|
|
|
|
import { Aaron } from "@freesewing/aaron"
|
|
|
|
import { cisFemaleAdult34 } from "@freesewing/models"
|
|
|
|
|
|
|
|
const pattern = new Aaron({
|
|
|
|
measurements: cisFemaleAdult34
|
|
|
|
})
|
|
|
|
|
|
|
|
const config = pattern.getConfig()
|
|
|
|
```
|