UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

15 lines (14 loc) 449 B
/** * @file 用来条形码 */ import React from 'react'; import type { RendererProps } from 'jamis-core'; import type { BarCodeSchema } from './types'; interface BarCodeProps extends RendererProps, Omit<BarCodeSchema, 'type' | 'className'> { } export declare class BarCodeField extends React.Component<BarCodeProps, Record<string, any>> { render(): JSX.Element; } export declare class BarCodeFieldRenderer extends BarCodeField { } export {};