Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
15
VApp/node_modules/rxjs/dist/esm/internal/NotificationFactories.js
generated
vendored
Normal file
15
VApp/node_modules/rxjs/dist/esm/internal/NotificationFactories.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
Reference in New Issue
Block a user