Newer
Older
alert / js / node_modules / flarum / forum / components / PostUser.d.ts
@Réz István Réz István on 18 Nov 2021 396 bytes first commit
/**
 * The `PostUser` component shows the avatar and username of a post's author.
 *
 * ### Attrs
 *
 * - `post`
 */
export default class PostUser extends Component<import("../../common/Component").ComponentAttrs> {
    /**
     * Show the user card.
     */
    showCard(): void;
    /**
     * Hide the user card.
     */
    hideCard(): void;
}
import Component from "../../common/Component";