mirror of
https://github.com/flarum/framework.git
synced 2025-01-10 21:16:35 +08:00
45927f1068
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
19 lines
654 B
TypeScript
19 lines
654 B
TypeScript
import Component from '../Component';
|
|
import type Mithril from 'mithril';
|
|
import type ModalManagerState from '../states/ModalManagerState';
|
|
interface IModalManagerAttrs {
|
|
state: ModalManagerState;
|
|
}
|
|
/**
|
|
* 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<IModalManagerAttrs> {
|
|
view(): JSX.Element;
|
|
oncreate(vnode: Mithril.VnodeDOM<IModalManagerAttrs, this>): void;
|
|
animateShow(readyCallback: () => void): void;
|
|
animateHide(): void;
|
|
}
|
|
export {};
|