Remove deprecated scripts for adding head-matter to wt_config.xml, including Python and Bash implementations, to streamline configuration management.
This commit is contained in:
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
|
||||
Reference in New Issue
Block a user