1
0
Fork 0
freesewing/lib/themes.ts
joostdecock 2160980ed4 :wip: Working on design theme
This needs to be taken out of this repo later
2018-07-16 13:42:26 +00:00

15 lines
410 B
TypeScript

import { Draft } from './themes/draft'
import { Paperless } from './themes/paperless'
import { Sample } from './themes/sample'
import { Compare } from './themes/compare'
import { Designer } from './themes/designer'
/** Standard themes that ship with freesewing */
var themes = {
draft: new Designer(),
paperless: new Paperless(),
sample: new Sample(),
compare: new Compare()
}
export default themes;