Newer
Older
alert / js / node_modules / flarum / forum / components / DiscussionHero.d.ts
@Réz István Réz István on 18 Nov 2021 465 bytes first commit
/**
 * The `DiscussionHero` component displays the hero on a discussion page.
 *
 * ### attrs
 *
 * - `discussion`
 */
export default class DiscussionHero extends Component<import("../../common/Component").ComponentAttrs> {
    /**
     * Build an item list for the contents of the discussion hero.
     *
     * @return {ItemList}
     */
    items(): ItemList;
}
import Component from "../../common/Component";
import ItemList from "../../common/utils/ItemList";