1
0
mirror of https://github.com/flarum/core.git synced 2025-08-07 17:07:19 +02:00

Bundled output for commit a203469109

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

[skip ci]
This commit is contained in:
flarum-bot
2021-11-23 13:06:36 +00:00
parent a203469109
commit c96fa49853
16 changed files with 24 additions and 22 deletions

View File

@@ -2,7 +2,7 @@
* The `ChangeEmailModal` component shows a modal dialog which allows the user
* to change their email address.
*/
export default class ChangeEmailModal extends Modal<any> {
export default class ChangeEmailModal extends Modal<import("../../common/components/Modal").IInternalModalAttrs> {
constructor();
/**
* Whether or not the email has been changed successfully.

View File

@@ -2,7 +2,7 @@
* The `ChangePasswordModal` component shows a modal dialog which allows the
* user to send themself a password reset email.
*/
export default class ChangePasswordModal extends Modal<any> {
export default class ChangePasswordModal extends Modal<import("../../common/components/Modal").IInternalModalAttrs> {
constructor();
}
import Modal from "../../common/components/Modal";

View File

@@ -6,7 +6,7 @@
*
* - `email`
*/
export default class ForgotPasswordModal extends Modal<any> {
export default class ForgotPasswordModal extends Modal<import("../../common/components/Modal").IInternalModalAttrs> {
constructor();
/**
* The value of the email input.

View File

@@ -6,7 +6,7 @@
* - `identification`
* - `password`
*/
export default class LogInModal extends Modal<any> {
export default class LogInModal extends Modal<import("../../common/components/Modal").IInternalModalAttrs> {
constructor();
/**
* The value of the identification input.

View File

@@ -1,7 +1,7 @@
/**
* The 'RenameDiscussionModal' displays a modal dialog with an input to rename a discussion
*/
export default class RenameDiscussionModal extends Modal<any> {
export default class RenameDiscussionModal extends Modal<import("../../common/components/Modal").IInternalModalAttrs> {
constructor();
discussion: any;
currentTitle: any;

View File

@@ -8,7 +8,7 @@
* - `password`
* - `token` An email token to sign up with.
*/
export default class SignUpModal extends Modal<any> {
export default class SignUpModal extends Modal<import("../../common/components/Modal").IInternalModalAttrs> {
constructor();
/**
* The value of the username input.