frontend/.pnpm-store/v3/files/5c/0f6abc86f8c875da1948781b6a5224a4cd638a85803c81bfb80621b2ce15b646e2de5e1fb8442d767403471c494b1dd6f9312f749ffeb974477f3ed62a9ef1

15 lines
463 B
Plaintext

export const COMPLETE_NOTIFICATION = (() => 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,
value,
error,
};
}
//# sourceMappingURL=NotificationFactories.js.map