mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-12-16 10:02:22 +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);
|
|
}
|
|
} |