tav-ui
Version:
16 lines (15 loc) • 450 B
TypeScript
import { type ComputedRef } from 'vue';
import { type EditorProps } from '../typings';
export declare function useEditorToolbar(options: {
mergedProps: ComputedRef<EditorProps>;
}): {
toolbarConfig: ComputedRef<{
toolbar: string;
toolbarOptions: {
/** 工具栏是否固定 */
toolbar_sticky: boolean;
/** 按钮过多的显示模式 */
toolbar_mode: any;
};
}>;
};