mirror of
https://github.com/flarum/framework.git
synced 2025-02-19 17:59:46 +08:00
15 lines
433 B
TypeScript
15 lines
433 B
TypeScript
/**
|
|
* The `HeaderSecondary` component displays secondary header controls.
|
|
*/
|
|
export default class HeaderSecondary extends Component<import("../../common/Component").ComponentAttrs, undefined> {
|
|
constructor();
|
|
/**
|
|
* Build an item list for the controls.
|
|
*
|
|
* @return {ItemList}
|
|
*/
|
|
items(): ItemList;
|
|
}
|
|
import Component from "../../common/Component";
|
|
import ItemList from "../../common/utils/ItemList";
|