Skip to content

Commit fd1347f

Browse files
committed
Restored barcodes/index.js
1 parent 2f7db28 commit fd1347f

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

src/barcodes/index.js

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
1-
import {CODE39} from './CODE39'
2-
export default {CODE39}
1+
import {CODE39} from './CODE39/';
2+
import {CODE128, CODE128A, CODE128B, CODE128C} from './CODE128/';
3+
import {EAN13, EAN8, EAN5, EAN2, UPC, UPCE} from './EAN_UPC/';
4+
import {ITF, ITF14} from './ITF/';
5+
import {MSI, MSI10, MSI11, MSI1010, MSI1110} from './MSI/';
6+
import {pharmacode} from './pharmacode/';
7+
import {codabar} from './codabar';
8+
import {CODE93, CODE93FullASCII} from './CODE93/';
9+
import {GenericBarcode} from './GenericBarcode/';
10+
11+
export default {
12+
CODE39,
13+
CODE128, CODE128A, CODE128B, CODE128C,
14+
EAN13, EAN8, EAN5, EAN2, UPC, UPCE,
15+
ITF14,
16+
ITF,
17+
MSI, MSI10, MSI11, MSI1010, MSI1110,
18+
pharmacode,
19+
codabar,
20+
CODE93, CODE93FullASCII,
21+
GenericBarcode
22+
};

0 commit comments

Comments
 (0)