Private
Public Access
1
0
Files

13 lines
337 B
JavaScript

import { EVENTS } from '../constants';
export function playToast(toastId, toasterId = undefined, targetDocument) {
const event = new CustomEvent(EVENTS.play, {
bubbles: false,
cancelable: false,
detail: {
toastId,
toasterId
}
});
targetDocument.dispatchEvent(event);
}