Newer
Older
alert / js / node_modules / flarum / forum / components / PostMeta.d.ts
@Réz István Réz István on 18 Nov 2021 517 bytes first commit
/**
 * The `PostMeta` component displays the time of a post, and when clicked, shows
 * a dropdown containing more information about the post (number, full time,
 * permalink).
 *
 * ### Attrs
 *
 * - `post`
 */
export default class PostMeta extends Component<import("../../common/Component").ComponentAttrs> {
    /**
     * Get the permalink for the given post.
     *
     * @param {Post} post
     * @returns {String}
     */
    getPermalink(post: any): string;
}
import Component from "../../common/Component";