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
## [41.0.0](v40.0.13...v41.0.0) (2023-09-30)
### ⚠ BREAKING CHANGES
* All interfaces now need to use method signature style rather than property function style
eg:
before
```ts
interface Foo {
bar: (baz: number) => void
}
```
after
```ts
interface Foo {
bar(baz: number): void
}
```
### Dependencies
* update eslint-config-ipfs ([#1374](#1374)) ([5fadfb7](5fadfb7))
0 commit comments