1
0
mirror of https://github.com/flarum/core.git synced 2025-07-28 12:10:51 +02:00

Bundled output for commit 3cf19dd2ea

Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
This commit is contained in:
flarum-bot
2021-08-22 19:40:36 +00:00
parent 3cf19dd2ea
commit 1ab35d89ac
11 changed files with 93 additions and 31 deletions

View File

@@ -1,8 +1,14 @@
/**
* The `TextEditorButton` component displays a button suitable for the text
* editor toolbar.
*
* Automatically creates tooltips using the Tooltip component and provided text.
*
* ## Attrs
* - `title` - Tooltip for the button
*/
export default class TextEditorButton extends Button {
export default class TextEditorButton extends Button<import("./Button").IButtonAttrs> {
static initAttrs(attrs: any): void;
constructor();
}
import Button from "./Button";