sarah
This design is part of the FreeSewing collection
Named exports
Sarah: The design constructorabout: Metadata about the designback: The back part of the designbase: The base part of the designfront: The front part of the designi18n: Internationalisation (i18n/translation) data for the designpctWaistline: The pctWaistline part of the designpctWaistlineSeatDiff: The pctWaistlineSeatDiff part of the designpctWaistlineToFloor: The pctWaistlineToFloor part of the designpctWaistlineToSeat: The pctWaistlineToSeat part of the design
Constructor
To create a new sarah Design, import the constructur as such:
import { Sarah } from '@freesewing/sarah'
Then you can instantiate it by passing a settings object:
const pattern = new Sarah(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 { Sarah } from '@freesewing/sarah'
// Access the design config from the constructor
const dConf = Sarah.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 { Sarah } from '@freesewing/sarah'
// Access the pattern config from the constructor
const pConf = Sarah.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/sarah'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/sarah'
Parts
back
The part itself
You can access this part as the back named export:
import { back } from '@freesewing/sarah'
base
The part itself
You can access this part as the base named export:
import { base } from '@freesewing/sarah'
front
The part itself
You can access this part as the front named export:
import { front } from '@freesewing/sarah'
pctWaistline
The part itself
You can access this part as the pctWaistline named export:
import { pctWaistline } from '@freesewing/sarah'
pctWaistlineSeatDiff
The part itself
You can access this part as the pctWaistlineSeatDiff named export:
import { pctWaistlineSeatDiff } from '@freesewing/sarah'
pctWaistlineToFloor
The part itself
You can access this part as the pctWaistlineToFloor named export:
import { pctWaistlineToFloor } from '@freesewing/sarah'
pctWaistlineToSeat
The part itself
You can access this part as the pctWaistlineToSeat named export:
import { pctWaistlineToSeat } from '@freesewing/sarah'