Skip to content

Commit 42ec97f

Browse files
authored
Merge pull request #330 from Microsoft/addDeprecationNotice
Add @Deprecation notice
2 parents 30a0d04 + 746c889 commit 42ec97f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

TS.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -832,6 +832,7 @@ module Emit =
832832
Pt.Printl ""
833833

834834
let EmitElementTagNameMap () =
835+
Pt.Printl "/** @deprecated Directly use HTMLElementTagNameMap or SVGElementTagNameMap as appropriate, instead. */"
835836
Pt.Printl "interface ElementTagNameMap extends HTMLElementTagNameMap, SVGElementTagNameMap { }"
836837
Pt.Printl ""
837838

baselines/dom.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15029,6 +15029,7 @@ interface SVGElementTagNameMap {
1502915029
"view": SVGViewElement;
1503015030
}
1503115031

15032+
/** @deprecated Directly use HTMLElementTagNameMap or SVGElementTagNameMap as appropriate, instead. */
1503215033
interface ElementTagNameMap extends HTMLElementTagNameMap, SVGElementTagNameMap { }
1503315034

1503415035
declare var Audio: { new(src?: string): HTMLAudioElement; };

0 commit comments

Comments
 (0)