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:
|
/** |
|
* @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?
When opening
openeo.d.tsin 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 withobject<x,y>, because everything is fine until here:openeo-js-client/openeo.d.ts
Lines 122 to 131 in 6d0e09b
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?