mirror of
https://github.com/flarum/framework.git
synced 2025-01-08 19:53:39 +08:00
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
|
export default class SettingsModal extends Modal {
|
||
|
settings: {} | undefined;
|
||
|
form(): string;
|
||
|
submitButton(): JSX.Element;
|
||
|
setting(key: any, fallback?: string): any;
|
||
|
dirty(): {};
|
||
|
changed(): number;
|
||
|
onsaved(): void;
|
||
|
}
|
||
|
import Modal from "../../common/components/Modal";
|