Skip to content

Commit 2918ba9

Browse files
authored
chore: fix linting errors (#1380)
The ts doc checker does not like having the same interface in a file with the same method names.
1 parent eac17f8 commit 2918ba9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
eg:
99
before
1010
```ts
11-
interface Foo {
11+
interface MyInterfaceBefore {
1212
bar: (baz: number) => void
1313
}
1414
```
1515
after
1616
```ts
17-
interface Foo {
18-
bar(baz: number): void
17+
interface MyInterfaceAfter {
18+
bar (baz: number): void
1919
}
2020
```
2121

@@ -1560,7 +1560,7 @@ Co-authored-by: Alex Potsides <[email protected]>
15601560

15611561
### BREAKING CHANGES
15621562

1563-
* Update all the deps except webpack.
1563+
* Update all the deps except webpack.
15641564

15651565

15661566

@@ -2247,7 +2247,7 @@ Co-authored-by: Alex Potsides <[email protected]>
22472247
### BREAKING CHANGES
22482248

22492249
* lots of deps updated hidden problems might still exist
2250-
* console.* statement are NOW a lint error
2250+
* console.* statement are NOW a lint error
22512251

22522252

22532253

0 commit comments

Comments
 (0)