mirror of
https://github.com/flarum/core.git
synced 2025-10-12 07:24:27 +02:00
14 lines
393 B
TypeScript
14 lines
393 B
TypeScript
/**
|
|
* The `ReplyPlaceholder` component displays a placeholder for a reply, which,
|
|
* when clicked, opens the reply composer.
|
|
*
|
|
* ### Attrs
|
|
*
|
|
* - `discussion`
|
|
*/
|
|
export default class ReplyPlaceholder extends Component<import("../../common/Component").ComponentAttrs, undefined> {
|
|
constructor();
|
|
anchorPreview(preview: any): void;
|
|
}
|
|
import Component from "../../common/Component";
|