frontend/.pnpm-store/v3/files/26/5989b8d83e2b5c1f14385aca1647dec4bb389e1eb3b523cc15a8f90a6686afb85b94c1b3a33933ee01c1d03c5d7fddcc02e32ac7a34aafa958dc2b863bd39e

15 lines
499 B
Plaintext

export var COMPLETE_NOTIFICATION = (function () { return createNotification('C', undefined, undefined); })();
export function errorNotification(error) {
return createNotification('E', undefined, error);
}
export function nextNotification(value) {
return createNotification('N', value, undefined);
}
export function createNotification(kind, value, error) {
return {
kind: kind,
value: value,
error: error,
};
}
//# sourceMappingURL=NotificationFactories.js.map