File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /*
2+ * ****************************************************************************
3+ * Copyright (C) 2018-2018 WeWill3C, LLC dba Now IMS, All rights reserved.
4+ * Project: nowims-ui
5+ * Modified By: rogerk
6+ * Created On: March 27th, 2018
7+ * Last Modified: March 27th, 2018
8+ * ****************************************************************************
9+ */
10+ import * as React from 'react' ;
11+
12+ export interface AlertOptions {
13+ place : 'tl' | 'tc' | 'tr' | 'bl' | 'bc' | 'br' ,
14+ message : string ,
15+ type : 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' ,
16+ icon : string ,
17+ autoDismiss : number
18+ }
19+
20+ declare class ReactNotificationAlert extends React . Component {
21+ notificationAlert ( options : AlertOptions ) : void ;
22+ }
23+
24+ export default ReactNotificationAlert ;
25+
You can’t perform that action at this time.
0 commit comments