jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
17 lines (16 loc) • 433 B
TypeScript
import type { ActionSchema, FormBaseControl } from '../types';
export * from './components/types';
export * from './ButtonGroup.types';
export * from './Action.types';
export * from './DropDownButton.types';
/**
* Button Toolar 渲染器。
*
*/
export interface ButtonToolbarSchema extends FormBaseControl {
/**
* 指定为按钮工具集合类型
*/
type: 'button-toolbar';
buttons: Array<ActionSchema>;
}