jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
13 lines (12 loc) • 316 B
TypeScript
import type { FormBaseControlSchema, FormControlProps } from '../types';
/**
* Repeat
*/
export interface RepeatControlSchema extends FormBaseControlSchema {
type: 'input-repeat';
options?: string;
}
export interface RepeatProps extends FormControlProps {
options?: string;
placeholder?: string;
}