Newer
Older
alert / js / node_modules / flarum / common / components / ModalManager.d.ts
@Réz István Réz István on 18 Nov 2021 394 bytes first commit
/**
 * The `ModalManager` component manages a modal dialog. Only one modal dialog
 * can be shown at once; loading a new component into the ModalManager will
 * overwrite the previous one.
 */
export default class ModalManager extends Component<import("../Component").ComponentAttrs> {
    animateShow(readyCallback: any): void;
    animateHide(): void;
}
import Component from "../Component";