import type { ActionSchema, BaseSchema, ButtonGroupSchema, SwitchControlSchema } from '../types'; /** * 操作栏组件。 * */ export interface OperationSchema extends BaseSchema { /** * 指定为操作栏 */ type: 'operation'; /** * 占位符 */ placeholder?: string; buttons: (ActionSchema | SwitchControlSchema | ButtonGroupSchema)[]; }