mirror of
https://github.com/flarum/core.git
synced 2025-07-25 10:41:24 +02:00
16 lines
494 B
TypeScript
16 lines
494 B
TypeScript
/**
|
|
* The `HeaderPrimary` component displays primary header controls. On the
|
|
* default skin, these are shown just to the right of the forum title.
|
|
*/
|
|
export default class HeaderPrimary extends Component<import("../../common/Component").ComponentAttrs> {
|
|
constructor();
|
|
/**
|
|
* Build an item list for the controls.
|
|
*
|
|
* @return {ItemList}
|
|
*/
|
|
items(): ItemList;
|
|
}
|
|
import Component from "../../common/Component";
|
|
import ItemList from "../../common/utils/ItemList";
|