UNPKG

jamis

Version:

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

8 lines (7 loc) 287 B
import type { RendererFC, RendererProps } from 'jamis-core'; import type { CarouselSchema } from './types'; interface CarouselProps extends RendererProps, Omit<CarouselSchema, 'className'> { value?: any; } export declare const CarouselRenderer: RendererFC<CarouselProps>; export {};