/** * 数值指标的右侧属性面板 */ import { BasePlugin } from 'amis-editor'; import { RendererPluginAction } from 'amis-editor-core'; import { FormControlProps } from 'amis-core'; import type { BaseEventContext } from 'amis-editor-core'; export interface TargetNumberProps extends FormControlProps { } export default class TargetNumberPlugin extends BasePlugin { rendererName: string; $schema: string; isBaseComponent: boolean; order: number; name: string; description: string; tags: string[]; pluginIcon: string; scaffold: any; previewSchema: any; panelTitle: string; panelJustify: boolean; afterUpdate: (event: any) => void; actions: RendererPluginAction[]; panelBodyAsyncCreator(context: BaseEventContext): Promise; }