-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.d.ts
More file actions
25 lines (21 loc) · 781 Bytes
/
index.d.ts
File metadata and controls
25 lines (21 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* ****************************************************************************
* Copyright (C) 2018-2018 WeWill3C, LLC dba Now IMS, All rights reserved.
* Project: nowims-ui
* Modified By: rogerk
* Created On: March 27th, 2018
* Last Modified: March 27th, 2018
* ****************************************************************************
*/
import * as React from 'react';
export interface AlertOptions {
place: 'tl' | 'tc' | 'tr' | 'bl' | 'bc' | 'br',
message: string,
type: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark',
icon: string,
autoDismiss: number
}
declare class ReactNotificationAlert extends React.Component {
notificationAlert(options: AlertOptions): void;
}
export default ReactNotificationAlert;