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