API Reference > @next-core/brick-types > PluginRuntimeContext
PluginRuntimeContext interface
系统运行时信息。
Signature:
export interface PluginRuntimeContext
Properties
| Property | Type | Description |
|---|---|---|
| anchor | string | 当前的 anchor 参数(hash 除去开头的 #) |
| app | MicroApp | 当前的应用信息。 |
| event | CustomEvent | 当前的在事件处理中的事件对象。 |
| flags | FeatureFlags | 特性开关字典。 |
| hash | string | 当前的 hash 参数 |
| overrideApp | MicroApp | 用于跨应用菜单注入等场景的应用重载。 |
| pathname | string | 当前的 pathname 参数 |
| query | URLSearchParams | 当前的 query 参数。 |
| segues | SeguesConf | 当前应用的页面切换配置。 |
| sys | SystemInfo | 系统会话信息。 |