initial commit - far from runnable
This commit is contained in:
commit
db057ce342
8614 changed files with 1032171 additions and 0 deletions
15
node_modules/rxjs/dist/esm/internal/NotificationFactories.js
generated
vendored
Normal file
15
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue