mirror of
https://github.com/flarum/framework.git
synced 2025-01-07 19:13:37 +08:00
16 lines
512 B
TypeScript
16 lines
512 B
TypeScript
|
export default class AdminNav extends Component<import("../../common/Component").ComponentAttrs> {
|
||
|
constructor();
|
||
|
query: Stream<string> | undefined;
|
||
|
scrollToActive(): void;
|
||
|
/**
|
||
|
* Build an item list of main links to show in the admin navigation.
|
||
|
*
|
||
|
* @return {ItemList}
|
||
|
*/
|
||
|
items(): ItemList;
|
||
|
extensionItems(): ItemList;
|
||
|
}
|
||
|
import Component from "../../common/Component";
|
||
|
import Stream from "../../common/utils/Stream";
|
||
|
import ItemList from "../../common/utils/ItemList";
|