UNPKG

epic-designer-gold

Version:

基于vue3的设计器,可视化开发页面表单

46 lines (45 loc) 1.47 kB
import { editor } from 'monaco-editor'; /** * 设置文本 * @param text */ declare function setValue(text: string): void; /** * 光标处插入文本 * @param text */ declare function insertText(text: string): void; declare const _default: import('vue').DefineComponent<{ language?: string; readOnly?: boolean; valueFormat?: string; modelValue?: any; config?: editor.IStandaloneEditorConstructionOptions; lineNumbers?: "on" | "off"; autoToggleTheme?: boolean; theme?: "vs-light" | "vs-dark" | "hc-black"; }, { setValue: typeof setValue; insertText: typeof insertText; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<{ language?: string; readOnly?: boolean; valueFormat?: string; modelValue?: any; config?: editor.IStandaloneEditorConstructionOptions; lineNumbers?: "on" | "off"; autoToggleTheme?: boolean; theme?: "vs-light" | "vs-dark" | "hc-black"; }> & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, { language: string; readOnly: boolean; valueFormat: string; config: editor.IStandaloneEditorConstructionOptions; lineNumbers: "on" | "off"; theme: "vs-light" | "vs-dark" | "hc-black"; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; export default _default;