Skip to content

v6.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 29 Sep 14:48
· 19 commits to main since this release

6.0.0 (2023-09-29)

⚠ 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
}

Features