mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 09:03:36 +08:00
b8754c7d7d
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
16 lines
523 B
TypeScript
16 lines
523 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;
|
|
extensionItems(): ItemList;
|
|
}
|
|
import Component from "../../common/Component";
|
|
import Stream from "../../common/utils/Stream";
|
|
import ItemList from "../../common/utils/ItemList";
|