Files
powerpoint-toolbox/node_modules/@fluentui/react-toast/lib/state/vanilla/updateToast.js
T
2025-03-07 19:22:02 +01:00

10 lines
271 B
JavaScript

import { EVENTS } from '../constants';
export function updateToast(options, targetDocument) {
const event = new CustomEvent(EVENTS.update, {
bubbles: false,
cancelable: false,
detail: options
});
targetDocument.dispatchEvent(event);
}