mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 14:20:47 +08:00
b8754c7d7d
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
12 lines
424 B
TypeScript
12 lines
424 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, undefined> {
|
|
constructor();
|
|
animateShow(readyCallback: any): void;
|
|
animateHide(): void;
|
|
}
|
|
import Component from "../Component";
|