mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 22:43:41 +08:00
45927f1068
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
export default class SettingsModal extends Modal<any> {
|
|
constructor();
|
|
settings: {} | undefined;
|
|
form(): string;
|
|
submitButton(): JSX.Element;
|
|
setting(key: any, fallback?: string): any;
|
|
dirty(): {};
|
|
changed(): number;
|
|
onsaved(): void;
|
|
}
|
|
import Modal from "../../common/components/Modal";
|