Skip to main content

paco

note

This design is part of the FreeSewing collection

Named exports

Constructor

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

import { Paco } from '@freesewing/paco'

Then you can instantiate it by passing a settings object:

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

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

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

Metadata

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

import { about } from '@freesewing/paco'

I18n

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

import { i18n } from '@freesewing/paco'

Parts

back

The part itself

You can access this part as the back named export:

import { back } from '@freesewing/paco'

backPocketBag

The part itself

You can access this part as the backPocketBag named export:

import { backPocketBag } from '@freesewing/paco'

backPocketWelt

The part itself

You can access this part as the backPocketWelt named export:

import { backPocketWelt } from '@freesewing/paco'

backPocketWeltInterfacing

The part itself

You can access this part as the backPocketWeltInterfacing named export:

import { backPocketWeltInterfacing } from '@freesewing/paco'

cuff

The part itself

You can access this part as the cuff named export:

import { cuff } from '@freesewing/paco'

front

The part itself

You can access this part as the front named export:

import { front } from '@freesewing/paco'

frontPocketBag

The part itself

You can access this part as the frontPocketBag named export:

import { frontPocketBag } from '@freesewing/paco'

waistband

The part itself

You can access this part as the waistband named export:

import { waistband } from '@freesewing/paco'