@lwc/synthetic-shadow 7.2.2 → 7.2.3-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -145,7 +145,7 @@ function isFalse(obj) {
145
145
  * @returns `true` if the value is a function.
146
146
  */
147
147
  // Replacing `Function` with a narrower type that works for all our use cases is tricky...
148
- // eslint-disable-next-line @typescript-eslint/ban-types
148
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
149
149
  function isFunction(obj) {
150
150
  return typeof obj === 'function';
151
151
  }