1
0
mirror of https://github.com/flarum/core.git synced 2025-10-12 15:34:26 +02:00
Files
php-flarum/js/dist-typings/forum/components/ChangeEmailModal.d.ts
flarum-bot c3a684c7ed Bundled output for commit 3537f76eab
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-05-12 23:29:46 +00:00

26 lines
611 B
TypeScript

/**
* The `ChangeEmailModal` component shows a modal dialog which allows the user
* to change their email address.
*/
export default class ChangeEmailModal extends Modal {
/**
* Whether or not the email has been changed successfully.
*
* @type {Boolean}
*/
success: boolean | undefined;
/**
* The value of the email input.
*
* @type {function}
*/
email: Function | undefined;
/**
* The value of the password input.
*
* @type {function}
*/
password: Function | undefined;
}
import Modal from "../../common/components/Modal";