-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Milestone
Description
When opening openeo.d.ts
in VS Code, it displays me "482 problems in this file". I think most (if not all) of them stem from a missing .
when specifying types for object keys/values with object<x,y>
, because everything is fine until here:
Lines 122 to 131 in 6d0e09b
/** | |
* @protected | |
* @type {object.<string, string>} | |
*/ | |
protected apiToClientNames: object<string, string>; | |
/** | |
* @protected | |
* @type {object.<string, string>} | |
*/ | |
protected clientToApiNames: object<string, string>; |
The JSDoc has the .
but the actual code doesn't. Do they share the same syntax rules?
I'd be happy to go through the file and fix this all over. Just: Where is this file actually used so that I can test the changes?