huey
This design is part of the FreeSewing collection
Named exports
Huey: The design constructorabout: Metadata about the designback: The back part of the designcuff: The cuff part of the designfront: The front part of the designhood: The hood part of the designi18n: Internationalisation (i18n/translation) data for the designpocket: The pocket part of the designsleeve: The sleeve part of the designwaistband: The waistband part of the design
Constructor
To create a new huey Design, import the constructur as such:
import { Huey } from '@freesewing/huey'
Then you can instantiate it by passing a settings object:
const pattern = new Huey(settings)
Design config
You can access the design configuration without instantiating a design.
It is available as the designConfig property of the design constructor:
import { Huey } from '@freesewing/huey'
// Access the design config from the constructor
const dConf = Huey.designConfig
Pattern config
You can access the pattern configuration without instantiating a design.
It is available as the patternConfig property of the design constructor:
import { Huey } from '@freesewing/huey'
// Access the pattern config from the constructor
const pConf = Huey.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/huey'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/huey'
Parts
back
The part itself
You can access this part as the back named export:
import { back } from '@freesewing/huey'
cuff
The part itself
You can access this part as the cuff named export:
import { cuff } from '@freesewing/huey'
front
The part itself
You can access this part as the front named export:
import { front } from '@freesewing/huey'
hood
The part itself
You can access this part as the hood named export:
import { hood } from '@freesewing/huey'
pocket
The part itself
You can access this part as the pocket named export:
import { pocket } from '@freesewing/huey'
sleeve
The part itself
You can access this part as the sleeve named export:
import { sleeve } from '@freesewing/huey'
waistband
The part itself
You can access this part as the waistband named export:
import { waistband } from '@freesewing/huey'