Skip to content

Commit ba0a11b

Browse files
committed
refactor: keep dist
1 parent e184eae commit ba0a11b

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

dist/index.d.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+

0 commit comments

Comments
 (0)