mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-26 15:01:32 +08:00
16 lines
532 B
TypeScript
16 lines
532 B
TypeScript
import type { EventData } from "../../components/app_context.js";
|
|
import type BasicWidget from "../basic_widget.js";
|
|
import FlexContainer, { type FlexDirection } from "../containers/flex_container.js";
|
|
|
|
export default class ScreenContainer extends FlexContainer<BasicWidget> {
|
|
private screenName: string;
|
|
|
|
constructor(screenName: string, direction: FlexDirection) {
|
|
super(direction);
|
|
|
|
this.screenName = screenName;
|
|
}
|
|
|
|
activeScreenChangedEvent({ activeScreen }: EventData<"activeScreenChanged">) {}
|
|
}
|