-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# E0358: 'declare' should not be written inside a 'declare namespace' | ||
|
||
Inside `declare namespace`, declarations (functions, classes, etc.) are | ||
automatically `declare`. It is a syntax error to explicitly write `declare` on | ||
these declarations: | ||
|
||
```typescript | ||
declare namespace jQuery { | ||
declare function get(url); | ||
} | ||
``` | ||
|
||
To fix this error, remove the `declare` keyword: | ||
|
||
```typescript | ||
declare namespace jQuery { | ||
function get(url); | ||
} | ||
``` | ||
|
||
Known issues with quick-lint-js: | ||
* [possible false positive with 'declare' inside 'declare | ||
module'](https://github.com/quick-lint/quick-lint-js/issues/1142) |