mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 00:03:37 +08:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
|
/**
|
||
|
* The `AlertManager` component provides an area in which `Alert` components can
|
||
|
* be shown and dismissed.
|
||
|
*/
|
||
|
export default class AlertManager extends Component<import("../Component").ComponentAttrs> {
|
||
|
constructor();
|
||
|
state: any;
|
||
|
}
|
||
|
import Component from "../Component";
|