@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
12 lines (11 loc) • 409 B
TypeScript
/// <reference types="react" />
import type { EditorProps } from '@monaco-editor/react';
import type { Variant } from 'antd/es/config-provider';
export interface EditorProps2 extends EditorProps {
onBlur?: (input: string, event: any) => void;
placeholder?: string;
variant?: Variant;
enableOutline?: boolean;
version?: string;
}
export declare const MonacoEditor2: React.FC<EditorProps2>;