Skip to content

Commit 7a4a3c8

Browse files
committed
fix(typings): Minor issues preventing angular2.d.ts from working in TS 1.4.
This removes some, but not all, of the manual work needed to patch up our .d.ts for pushing to DefinitelyTyped. Remaining manual steps are: - some types still missing - declaration of decorators - remove destructuring args See #2686.
1 parent 8a5cf8f commit 7a4a3c8

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

docs/dgeni-package/processors/readTypeScriptModules.js

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ module.exports = function readTypeScriptModules(tsParser, readFilesProcessor, mo
6868

6969
exportDoc.members = [];
7070
for(var memberName in resolvedExport.members) {
71+
// FIXME(alexeagle): why do generic type params appear in members?
72+
if (memberName === 'T') {
73+
continue;
74+
}
7175
log.silly('>>>>>> member: ' + memberName + ' from ' + exportDoc.id + ' in ' + moduleDoc.id);
7276
var memberSymbol = resolvedExport.members[memberName];
7377
var memberDoc = createMemberDoc(memberSymbol, exportDoc, basePath, parseInfo.typeChecker);
@@ -227,6 +231,8 @@ module.exports = function readTypeScriptModules(tsParser, readFilesProcessor, mo
227231
}
228232
if (parameter.type) {
229233
paramText += ':' + getType(sourceFile, parameter.type);
234+
} else {
235+
paramText += ': any';
230236
}
231237
return paramText.trim();
232238
});

docs/dgeni-package/services/tsParser/getExportDocType.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ module.exports = function getExportDocType(log) {
4545
var node = symbol.valueDeclaration;
4646
while(node) {
4747
if ( node.flags & 0x2000 /* const */) {
48-
return 'const';
48+
// DefinitelyTyped is still TS 1.4 so const is not allowed.
49+
// https://github.com/borisyankov/DefinitelyTyped/issues/4564
50+
return 'var'; // change to const when targetting TS 1.5
4951
}
5052
node = node.parent;
5153
}

docs/dgeni-package/templates/type-definition.template.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{$ '*/' | indent(level, true) | replace(r/\n$/, "") $}{% endif -%}
77
{%- endmacro -%}
88

9-
// Type definitions for Angular v{$ versionInfo.currentVersion.full $}
9+
// Type definitions for Angular v{$ versionInfo.currentVersion.full | replace(r/\+/, "_") $}
1010
// Project: http://angular.io/
1111
// Definitions by: angular team <https://github.com/angular/>
1212
// Definitions: https://github.com/borisyankov/DefinitelyTyped
@@ -34,8 +34,8 @@
3434

3535
// See https://github.com/Microsoft/TypeScript/issues/1168
3636
class BaseException /* extends Error */ {
37-
message;
38-
stack;
37+
message: string;
38+
stack: string;
3939
toString(): string;
4040
}
4141
}
@@ -53,15 +53,15 @@
5353
{$ commentBlock(member, 5) $}
5454
{$ member.name $}
5555
{%- if member.parameters %}({% for param in member.parameters %}{$ param $}{% if not loop.last %}, {% endif %}{% endfor %}){%- endif %}
56-
{%- if member.returnType %}: {$ member.returnType $}{% endif -%}
56+
{%- if member.returnType %}: {$ member.returnType $}{%- else -%}: any{% endif -%}
5757
;
5858
{%- endfor %}
5959
}
6060

6161
{%- elif export.docType == 'enum' %} {
62-
{%- for member in export.members %}
63-
{$ member $}{% if not loop.last %},
64-
{%- endif -%}
62+
{%- for member in export.members %}
63+
{$ member $}{% if not loop.last %},
64+
{%- endif -%}
6565
{%- endfor %}
6666
}
6767

0 commit comments

Comments
 (0)