@difizen/magent-au
Version:
19 lines (14 loc) • 410 B
text/typescript
import { prop } from '@difizen/mana-app';
import { singleton } from '@difizen/mana-app';
import type { NavigatablePage } from '../base-layout/protocol.js';
()
export class MainView {
()
protected _active?: NavigatablePage;
public get active(): NavigatablePage | undefined {
return this._active;
}
public set active(v: NavigatablePage | undefined) {
this._active = v;
}
}