2021-05-13 07:29:46 +08:00
|
|
|
/**
|
|
|
|
* The `HeaderPrimary` component displays primary header controls. On the
|
|
|
|
* default skin, these are shown just to the right of the forum title.
|
|
|
|
*/
|
2021-08-19 17:17:15 +08:00
|
|
|
export default class HeaderPrimary extends Component<import("../../common/Component").ComponentAttrs, undefined> {
|
2021-05-13 07:29:46 +08:00
|
|
|
constructor();
|
|
|
|
config(isInitialized: any, context: any): void;
|
|
|
|
/**
|
|
|
|
* Build an item list for the controls.
|
|
|
|
*
|
|
|
|
* @return {ItemList}
|
|
|
|
*/
|
2021-11-12 04:05:26 +08:00
|
|
|
items(): ItemList<any>;
|
2021-05-13 07:29:46 +08:00
|
|
|
}
|
|
|
|
import Component from "../../common/Component";
|
|
|
|
import ItemList from "../../common/utils/ItemList";
|