mirror of
https://github.com/flarum/core.git
synced 2025-07-25 18:51:40 +02:00
10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
/**
|
|
* The `ComposerButton` component displays a button suitable for the composer
|
|
* controls.
|
|
*/
|
|
export default class ComposerButton extends Button<import("../../common/components/Button").IButtonAttrs> {
|
|
static initAttrs(attrs: any): void;
|
|
constructor();
|
|
}
|
|
import Button from "../../common/components/Button";
|