1
0
Fork 0

fix(otis): Add missing named export for i18n

This commit is contained in:
Joost De Cock 2023-10-14 13:15:44 +02:00
parent 452a2e519a
commit 8453d1898a

View file

@ -1,5 +1,6 @@
import { Design } from '@freesewing/core'
import { data } from '../data.mjs'
import { i18n } from '../i18n/index.mjs'
// Parts
import { back } from './back.mjs'
import { front } from './front.mjs'
@ -16,4 +17,14 @@ const Otis = new Design({
})
// Named exports
export { back, front, shortsleeve, longsleeve, bindingNeckBack, bindingNeckFront, bindingLeg, Otis }
export {
back,
front,
shortsleeve,
longsleeve,
bindingNeckBack,
bindingNeckFront,
bindingLeg,
i18n,
Otis,
}