import { CodeEditor, Hooks } from "../editor"; import { FileConstructor } from "../libs/interfaces/editor"; /** * Java代码编辑器 * @remarks 暂未实现语法检查和智能感知,待后续版本扩展 */ export declare class JavaEditor extends CodeEditor { protected fileConstructor(): FileConstructor; constructor(element: HTMLElement, hooks: Hooks); }