mirror of
https://github.com/wassname/talk.git
synced 2026-07-09 21:36:00 +08:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
import pym from '../services/PymConnection';
|
|
|
|
export const addNotification = (notifType, text) => {
|
|
pym.sendMessage('coral-alert', `${notifType}|${text}`);
|
|
};
|
|
|
|
export const clearNotification = () => {
|
|
pym.sendMessage('coral-clear-notification');
|
|
};
|