You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've got a factory function creating attribute converters, but when passing these into @property they don't seem to be picked up by the no-incompatible-property-type check
// causes warning
@property({converter: convert(Iban)})declare warning: Iban;// doesn't cause warning
@property({converter: {...convert(Iban)}})declare noWarning: Iban;// doesn't cause warning either
@property({converter: ibanConverter})// with const ibanConverter = convert(Iban) declare alsoNoWarning: Iban;
The text was updated successfully, but these errors were encountered:
I've got a factory function creating attribute converters, but when passing these into
@property
they don't seem to be picked up by theno-incompatible-property-type
checkThe text was updated successfully, but these errors were encountered: