mirror of
https://github.com/flarum/framework.git
synced 2025-02-26 02:37:57 +08:00
12 lines
413 B
TypeScript
12 lines
413 B
TypeScript
![]() |
/**
|
||
|
* 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> {
|
||
|
constructor();
|
||
|
animateShow(readyCallback: any): void;
|
||
|
animateHide(): void;
|
||
|
}
|
||
|
import Component from "../Component";
|