mirror of
https://github.com/flarum/framework.git
synced 2024-12-13 07:03:35 +08:00
5f110f73e7
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
16 lines
533 B
TypeScript
16 lines
533 B
TypeScript
export default class AdminNav extends Component<import("../../common/Component").ComponentAttrs, undefined> {
|
|
constructor();
|
|
query: Stream<string> | undefined;
|
|
scrollToActive(): void;
|
|
/**
|
|
* Build an item list of main links to show in the admin navigation.
|
|
*
|
|
* @return {ItemList}
|
|
*/
|
|
items(): ItemList<any>;
|
|
extensionItems(): ItemList<any>;
|
|
}
|
|
import Component from "../../common/Component";
|
|
import Stream from "../../common/utils/Stream";
|
|
import ItemList from "../../common/utils/ItemList";
|