2025-06-07 16:00:54 +00:00
|
|
|
import * as plugins from './plugins.js';
|
2025-06-07 11:40:31 +00:00
|
|
|
|
2025-06-07 16:00:54 +00:00
|
|
|
const appState = new plugins.deesElement.domtools.plugins.smartstate.Smartstate();
|
2025-06-07 11:40:31 +00:00
|
|
|
|
2025-06-07 16:00:54 +00:00
|
|
|
export interface IDcRouterState {}
|
|
|
|
export const loginStatePart: plugins.deesElement.domtools.plugins.smartstate.StatePart<
|
|
|
|
unknown,
|
|
|
|
IDcRouterState
|
|
|
|
> = await appState.getStatePart<IDcRouterState>('login', { identity: null }, 'persistent');
|