| 14 | import { Variant } from './types'; |
| 15 | |
| 16 | export interface ToastProps |
| 17 | extends TransitionCallbacks, |
| 18 | BsPrefixProps, |
| 19 | React.HTMLAttributes<HTMLElement> { |
| 20 | animation?: boolean; |
| 21 | autohide?: boolean; |
| 22 | delay?: number; |
| 23 | onClose?: (e?: React.MouseEvent | React.KeyboardEvent) => void; |
| 24 | |
| 25 | show?: boolean; |
| 26 | transition?: TransitionComponent; |
| 27 | bg?: Variant; |
| 28 | } |
| 29 | |
| 30 | const propTypes = { |
| 31 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…