1
0
Fork 0
freesewing/lib/themes.ts

16 lines
410 B
TypeScript
Raw Normal View History

2018-07-15 08:36:19 +00:00
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'
2018-07-15 08:36:19 +00:00
/** Standard themes that ship with freesewing */
var themes = {
draft: new Designer(),
2018-07-15 08:36:19 +00:00
paperless: new Paperless(),
sample: new Sample(),
compare: new Compare()
}
export default themes;