Skip to main content

breanna

note

This design is part of the FreeSewing collection

Named exports

Constructor

To create a new breanna Design, import the constructur as such:

import { Breanna } from '@freesewing/breanna'

Then you can instantiate it by passing a settings object:

const pattern = new Breanna(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 { Breanna } from '@freesewing/breanna'

// Access the design config from the constructor
const dConf = Breanna.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 { Breanna } from '@freesewing/breanna'

// Access the pattern config from the constructor
const pConf = Breanna.patternConfig

Metadata

You can access the design's metadata through the about named export:

import { about } from '@freesewing/breanna'

I18n

You can access the design's internationalization data through the i18n named export:

import { i18n } from '@freesewing/breanna'

Parts

back

The part itself

You can access this part as the back named export:

import { back } from '@freesewing/breanna'

base

The part itself

You can access this part as the base named export:

import { base } from '@freesewing/breanna'

front

The part itself

You can access this part as the front named export:

import { front } from '@freesewing/breanna'

frontBase

The part itself

You can access this part as the frontBase named export:

import { frontBase } from '@freesewing/breanna'

sleeve

The part itself

You can access this part as the sleeve named export:

import { sleeve } from '@freesewing/breanna'

sleevecap

The part itself

You can access this part as the sleevecap named export:

import { sleevecap } from '@freesewing/breanna'