1
0
mirror of https://github.com/flarum/core.git synced 2025-10-12 07:24:27 +02:00

Bundled output for commit bac0e594ee

Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
This commit is contained in:
flarum-bot
2021-11-11 19:21:56 +00:00
parent bac0e594ee
commit ec5214f714
33 changed files with 334 additions and 133 deletions

View File

@@ -1,8 +1,11 @@
export default class LoadingModal extends Modal<any> {
import Modal from '../../common/components/Modal';
export default class LoadingModal<ModalAttrs = {}> extends Modal<ModalAttrs> {
/**
* @inheritdoc
*/
static isDismissible: boolean;
constructor();
static readonly isDismissible: boolean;
className(): string;
title(): any;
content(): string;
onsubmit(e: Event): void;
}
import Modal from "../../common/components/Modal";