mirror of
https://github.com/flarum/framework.git
synced 2025-01-10 21:35:38 +08:00
45927f1068
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
27 lines
726 B
TypeScript
27 lines
726 B
TypeScript
/**
|
|
* The `EditUserModal` component displays a modal dialog with a login form.
|
|
*/
|
|
export default class EditUserModal extends Modal<any> {
|
|
constructor();
|
|
username: Stream<any> | undefined;
|
|
email: Stream<any> | undefined;
|
|
isEmailConfirmed: Stream<any> | undefined;
|
|
setPassword: Stream<boolean> | undefined;
|
|
password: Stream<any> | undefined;
|
|
groups: {} | undefined;
|
|
fields(): ItemList;
|
|
activate(): void;
|
|
data(): {
|
|
relationships: {};
|
|
};
|
|
nonAdminEditingAdmin(): any;
|
|
/**
|
|
* @internal
|
|
* @protected
|
|
*/
|
|
protected userIsAdmin(user: any): any;
|
|
}
|
|
import Modal from "./Modal";
|
|
import Stream from "../utils/Stream";
|
|
import ItemList from "../utils/ItemList";
|