@leanix/components 0.2.80 → 0.2.81

Sign up to get free protection for your applications and to get access to all the features.
@@ -1991,6 +1991,7 @@
1991
1991
  *
1992
1992
  * @see https://stackoverflow.com/questions/35528395/make-directive-input-required
1993
1993
  */
1994
+ // eslint-disable-next-line @typescript-eslint/ban-types
1994
1995
  function Required(target, propertyKey) {
1995
1996
  Object.defineProperty(target, propertyKey, {
1996
1997
  get: function () {
@@ -2888,6 +2889,7 @@
2888
2889
  * @Observe('foo') foo$: Observable<string>;
2889
2890
  */
2890
2891
  function Observe(observedKey) {
2892
+ // eslint-disable-next-line @typescript-eslint/ban-types
2891
2893
  return function (target, key) {
2892
2894
  var subjects = new WeakMap();
2893
2895
  var getSubject = function (instance) {