Skip to content

v41.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Sep 15:12
· 183 commits to master since this release

41.0.0 (2023-09-30)

⚠ BREAKING CHANGES

  • All interfaces now need to use method signature style rather than property function style

eg:
before

interface Foo {
  bar: (baz: number) => void
}

after

interface Foo {
  bar(baz: number): void
}

Dependencies