mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-12-13 07:42:23 +03:00
11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import {EditorApiUiModule} from "./ui";
|
|
import {EditorUiContext} from "../ui/framework/core";
|
|
|
|
export class EditorApi {
|
|
|
|
public ui: EditorApiUiModule;
|
|
|
|
constructor(context: EditorUiContext) {
|
|
this.ui = new EditorApiUiModule(context);
|
|
}
|
|
} |