bee
This design is part of the FreeSewing collection
Named exports
Bee: The design constructorabout: Metadata about the designbandTie: The bandTie part of the designcup: The cup part of the designi18n: Internationalisation (i18n/translation) data for the designneckTie: The neckTie part of the design
Constructor
To create a new bee Design, import the constructur as such:
import { Bee } from '@freesewing/bee'
Then you can instantiate it by passing a settings object:
const pattern = new Bee(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 { Bee } from '@freesewing/bee'
// Access the design config from the constructor
const dConf = Bee.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 { Bee } from '@freesewing/bee'
// Access the pattern config from the constructor
const pConf = Bee.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/bee'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/bee'
Parts
bandTie
The part itself
You can access this part as the bandTie named export:
import { bandTie } from '@freesewing/bee'
cup
The part itself
You can access this part as the cup named export:
import { cup } from '@freesewing/bee'
neckTie
The part itself
You can access this part as the neckTie named export:
import { neckTie } from '@freesewing/bee'