-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The ts doc checker does not like having the same interface in a file with the same method names.
- Loading branch information
1 parent
eac17f8
commit a86ceb5
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,14 @@ | |
eg: | ||
before | ||
```ts | ||
interface Foo { | ||
interface MyInterfaceBefore { | ||
bar: (baz: number) => void | ||
} | ||
``` | ||
after | ||
```ts | ||
interface Foo { | ||
bar(baz: number): void | ||
interface MyInterfaceAfter { | ||
bar (baz: number): void | ||
} | ||
``` | ||
|
||
|
@@ -1560,7 +1560,7 @@ Co-authored-by: Alex Potsides <[email protected]> | |
|
||
### BREAKING CHANGES | ||
|
||
* Update all the deps except webpack. | ||
* Update all the deps except webpack. | ||
|
||
|
||
|
||
|
@@ -2247,7 +2247,7 @@ Co-authored-by: Alex Potsides <[email protected]> | |
### BREAKING CHANGES | ||
|
||
* lots of deps updated hidden problems might still exist | ||
* console.* statement are NOW a lint error | ||
* console.* statement are NOW a lint error | ||
|
||
|
||
|
||
|