20 lines
948 B
TypeScript
20 lines
948 B
TypeScript
import beltSpecification from './belt-specification.json'
|
|
import fourLayerPaperStraw from './four-layer-paper-straw.json'
|
|
import multiLayerPaperTapeWidthAngle from './multi-layer-paper-tape-width-angle.json'
|
|
import paperRollWeightLength from './paper-roll-weight-length.json'
|
|
import paperTapeWidthAngle from './paper-tape-width-angle.json'
|
|
import paperTubeProduction from './paper-tube-production.json'
|
|
import paperTubeWeight from './paper-tube-weight.json'
|
|
import threeLayerPaperStraw from './three-layer-paper-straw.json'
|
|
|
|
export default {
|
|
'paper-tube-weight': paperTubeWeight,
|
|
'belt-specification': beltSpecification,
|
|
'paper-roll-weight-length': paperRollWeightLength,
|
|
'paper-tube-production': paperTubeProduction,
|
|
'paper-tape-width-angle': paperTapeWidthAngle,
|
|
'multi-layer-paper-tape-width-angle': multiLayerPaperTapeWidthAngle,
|
|
'three-layer-paper-straw': threeLayerPaperStraw,
|
|
'four-layer-paper-straw': fourLayerPaperStraw,
|
|
}
|