UNPKG

ember-bootstrap-toasts-manager

Version:

Ember-addon that provides a simple mechanism for interaction with user using toasts.

9 lines (7 loc) 372 B
import type Component from '@glimmer/component'; import type { ToastsBaseSignature } from 'ember-bootstrap-toasts-manager/components/toasts/base'; import type { ToastOptions } from 'ember-bootstrap-toasts-manager/interfaces/toast-options.type'; export interface ToastQueueItem { toastOptions: ToastOptions; componentToRender: typeof Component<ToastsBaseSignature>; }