jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
19 lines (18 loc) • 532 B
TypeScript
import React from 'react';
import type { RendererProps, Schema } from 'jamis-core';
import type { EachSchema } from './types';
interface EachProps extends RendererProps, Omit<EachSchema, 'className' | 'items'> {
name: string;
items: Schema;
}
export default class Each extends React.Component<EachProps> {
static propsList: Array<string>;
static defaultProps: {
className: string;
placeholder: string;
};
render(): JSX.Element;
}
export declare class EachRenderer extends Each {
}
export {};