(message: string | React.ReactElement, details?: string, options?: ToastOptions)
| 75 | } |
| 76 | |
| 77 | const info = (message: string | React.ReactElement, details?: string, options?: ToastOptions) => |
| 78 | showToast(prepareMessage(message, details), Intent.PRIMARY, Object.assign(infoOptions, options)) |
| 79 | |
| 80 | const warning = (message: string | React.ReactElement, details?: string, options?: ToastOptions) => |
| 81 | showToast(prepareMessage(message, details), Intent.WARNING, Object.assign(warningOptions, options)) |
nothing calls this directly
no test coverage detected