mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 09:03:36 +08:00
c3a684c7ed
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
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";
|