Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 1x 1x 1x 1x 1x 1x 5x 1x 1x 1x 1x 1x 1x | import SymbologyType from './types/enums/SymbologyType' import DataMatrix from './types/enums/DataMatrix' import EncodingMode from './types/enums/EncodingMode' import OutputOption from './types/enums/OutputOption' import OutputType from './types/enums/OutputType' import { createStream, createFile } from './main' export { default as SymbologyType } from './types/enums/SymbologyType' export { default as DataMatrix } from './types/enums/DataMatrix' export { default as EncodingMode } from './types/enums/EncodingMode' export { default as OutputOption } from './types/enums/OutputOption' export { default as OutputType } from './types/enums/OutputType' export { default as SymbologyConfig } from './types/SymbologyConfig' export { default as SymbologyResult } from './types/SymbologyResult' export { createStream, createFile } from './main' export default { DataMatrix, EncodingMode, OutputOption, OutputType, SymbologyType, createStream, createFile, /** Legacy support - remove in next major release */ Encoding: EncodingMode, Output: OutputOption, Barcode: SymbologyType } |