5989b8d83e2b5c1f14385aca1647dec4bb389e1eb3b523cc15a8f90a6686afb85b94c1b3a33933ee01c1d03c5d7fddcc02e32ac7a34aafa958dc2b863bd39e 499 B

123456789101112131415
  1. export var COMPLETE_NOTIFICATION = (function () { return createNotification('C', undefined, undefined); })();
  2. export function errorNotification(error) {
  3. return createNotification('E', undefined, error);
  4. }
  5. export function nextNotification(value) {
  6. return createNotification('N', value, undefined);
  7. }
  8. export function createNotification(kind, value, error) {
  9. return {
  10. kind: kind,
  11. value: value,
  12. error: error,
  13. };
  14. }
  15. //# sourceMappingURL=NotificationFactories.js.map