UNPKG

jamis

Version:

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

7 lines (6 loc) 251 B
import type { RendererFC, RendererProps } from 'jamis-core'; import type { TagSchema } from './types'; interface TagProps extends RendererProps, Omit<TagSchema, 'type' | 'className'> { } export declare const TagField: RendererFC<TagProps>; export {};