diff options
Diffstat (limited to 'cli/dts/lib.es2015.core.d.ts')
-rw-r--r-- | cli/dts/lib.es2015.core.d.ts | 66 |
1 files changed, 53 insertions, 13 deletions
diff --git a/cli/dts/lib.es2015.core.d.ts b/cli/dts/lib.es2015.core.d.ts index 79901dfe9..eec8dde90 100644 --- a/cli/dts/lib.es2015.core.d.ts +++ b/cli/dts/lib.es2015.core.d.ts @@ -455,47 +455,87 @@ interface String { /** * Returns an `<a>` HTML anchor element and sets the name attribute to the text value + * @deprecated A legacy feature for browser compatibility * @param name */ anchor(name: string): string; - /** Returns a `<big>` HTML element */ + /** + * Returns a `<big>` HTML element + * @deprecated A legacy feature for browser compatibility + */ big(): string; - /** Returns a `<blink>` HTML element */ + /** + * Returns a `<blink>` HTML element + * @deprecated A legacy feature for browser compatibility + */ blink(): string; - /** Returns a `<b>` HTML element */ + /** + * Returns a `<b>` HTML element + * @deprecated A legacy feature for browser compatibility + */ bold(): string; - /** Returns a `<tt>` HTML element */ + /** + * Returns a `<tt>` HTML element + * @deprecated A legacy feature for browser compatibility + */ fixed(): string; - /** Returns a `<font>` HTML element and sets the color attribute value */ + /** + * Returns a `<font>` HTML element and sets the color attribute value + * @deprecated A legacy feature for browser compatibility + */ fontcolor(color: string): string; - /** Returns a `<font>` HTML element and sets the size attribute value */ + /** + * Returns a `<font>` HTML element and sets the size attribute value + * @deprecated A legacy feature for browser compatibility + */ fontsize(size: number): string; - /** Returns a `<font>` HTML element and sets the size attribute value */ + /** + * Returns a `<font>` HTML element and sets the size attribute value + * @deprecated A legacy feature for browser compatibility + */ fontsize(size: string): string; - /** Returns an `<i>` HTML element */ + /** + * Returns an `<i>` HTML element + * @deprecated A legacy feature for browser compatibility + */ italics(): string; - /** Returns an `<a>` HTML element and sets the href attribute value */ + /** + * Returns an `<a>` HTML element and sets the href attribute value + * @deprecated A legacy feature for browser compatibility + */ link(url: string): string; - /** Returns a `<small>` HTML element */ + /** + * Returns a `<small>` HTML element + * @deprecated A legacy feature for browser compatibility + */ small(): string; - /** Returns a `<strike>` HTML element */ + /** + * Returns a `<strike>` HTML element + * @deprecated A legacy feature for browser compatibility + */ strike(): string; - /** Returns a `<sub>` HTML element */ + /** + * Returns a `<sub>` HTML element + * @deprecated A legacy feature for browser compatibility + */ sub(): string; - /** Returns a `<sup>` HTML element */ + /** + * Returns a `<sup>` HTML element + * @deprecated A legacy feature for browser compatibility + */ sup(): string; } |