Skip to main content

jaeger

note

This design is part of the FreeSewing collection

Named exports

  • Jaeger: The design constructor
  • about: Metadata about the design
  • backBase: The backBase part of the design
  • chestPiece: The chestPiece part of the design
  • chestPocketBag: The chestPocketBag part of the design
  • chestPocketWelt: The chestPocketWelt part of the design
  • collar: The collar part of the design
  • collarStand: The collarStand part of the design
  • frontBase: The frontBase part of the design
  • frontFacing: The frontFacing part of the design
  • frontLining: The frontLining part of the design
  • i18n: Internationalisation (i18n/translation) data for the design
  • innerPocketBag: The innerPocketBag part of the design
  • innerPocketWelt: The innerPocketWelt part of the design
  • pocket: The pocket part of the design
  • pocketLining: The pocketLining part of the design
  • side: The side part of the design
  • topsleeve: The topsleeve part of the design
  • underCollar: The underCollar part of the design
  • undersleeve: The undersleeve part of the design

Constructor

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

import { Jaeger } from '@freesewing/jaeger'

Then you can instantiate it by passing a settings object:

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

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

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

Metadata

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

import { about } from '@freesewing/jaeger'

I18n

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

import { i18n } from '@freesewing/jaeger'

Parts

backBase

The part itself

You can access this part as the backBase named export:

import { backBase } from '@freesewing/jaeger'

chestPiece

The part itself

You can access this part as the chestPiece named export:

import { chestPiece } from '@freesewing/jaeger'

chestPocketBag

The part itself

You can access this part as the chestPocketBag named export:

import { chestPocketBag } from '@freesewing/jaeger'

chestPocketWelt

The part itself

You can access this part as the chestPocketWelt named export:

import { chestPocketWelt } from '@freesewing/jaeger'

collar

The part itself

You can access this part as the collar named export:

import { collar } from '@freesewing/jaeger'

collarStand

The part itself

You can access this part as the collarStand named export:

import { collarStand } from '@freesewing/jaeger'

frontBase

The part itself

You can access this part as the frontBase named export:

import { frontBase } from '@freesewing/jaeger'

frontFacing

The part itself

You can access this part as the frontFacing named export:

import { frontFacing } from '@freesewing/jaeger'

frontLining

The part itself

You can access this part as the frontLining named export:

import { frontLining } from '@freesewing/jaeger'

innerPocketBag

The part itself

You can access this part as the innerPocketBag named export:

import { innerPocketBag } from '@freesewing/jaeger'

innerPocketWelt

The part itself

You can access this part as the innerPocketWelt named export:

import { innerPocketWelt } from '@freesewing/jaeger'

pocket

The part itself

You can access this part as the pocket named export:

import { pocket } from '@freesewing/jaeger'

pocketLining

The part itself

You can access this part as the pocketLining named export:

import { pocketLining } from '@freesewing/jaeger'

side

The part itself

You can access this part as the side named export:

import { side } from '@freesewing/jaeger'

topsleeve

The part itself

You can access this part as the topsleeve named export:

import { topsleeve } from '@freesewing/jaeger'

underCollar

The part itself

You can access this part as the underCollar named export:

import { underCollar } from '@freesewing/jaeger'

undersleeve

The part itself

You can access this part as the undersleeve named export:

import { undersleeve } from '@freesewing/jaeger'