import { PropType, ExtractPropTypes } from 'vue'; import { Options } from 'jsbarcode'; import { BarCodeTag } from './types'; /** * 属性 */ export declare const barCodeProps: { /** 条码内容 */ value: StringConstructor; /** 渲染方式 */ tag: { type: PropType; default: string; }; /** 参数 */ options: PropType; }; export type BarCodeProps = ExtractPropTypes;