yuang-framework-ui-pc
Version:
yuang-framework-ui-pc Library
20 lines (18 loc) • 366 B
TypeScript
import type { EleTooltipProps } from '../ele-app/plus';
/**
* 工具栏主题
*/
export type ToolbarTheme = 'default' | 'plain';
/**
* 共享数据
*/
export interface ToolbarProvide {
/** 显示提示 */
showTooltip?: (
text?: string,
el?: HTMLElement,
options?: EleTooltipProps
) => void;
/** 关闭提示 */
hideTooltip?: () => void;
}