mirror of
https://github.com/flarum/core.git
synced 2025-07-25 10:41:24 +02:00
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
/**
|
|
* The `PostEdited` component displays information about when and by whom a post
|
|
* was edited.
|
|
*
|
|
* ### Attrs
|
|
*
|
|
* - `post`
|
|
*/
|
|
export default class PostEdited extends Component<import("../../common/Component").ComponentAttrs> {
|
|
constructor();
|
|
}
|
|
import Component from "../../common/Component";
|