framework/js/dist-typings/common/components/AlertManager.d.ts

9 lines
279 B
TypeScript
Raw Normal View History

/**
* The `AlertManager` component provides an area in which `Alert` components can
* be shown and dismissed.
*/
export default class AlertManager extends Component<import("../Component").ComponentAttrs, undefined> {
constructor();
}
import Component from "../Component";