diff --git a/src/lib/es2015.core.d.ts b/src/lib/es2015.core.d.ts index 1487891d524..032a7afc0ec 100644 --- a/src/lib/es2015.core.d.ts +++ b/src/lib/es2015.core.d.ts @@ -434,48 +434,48 @@ interface String { startsWith(searchString: string, position?: number): boolean; /** - * Returns an HTML anchor element and sets the name attribute to the text value + * Returns an `` HTML anchor element and sets the name attribute to the text value * @param name */ anchor(name: string): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ big(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ blink(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ bold(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ fixed(): string; - /** Returns a HTML element and sets the color attribute value */ + /** Returns a `` HTML element and sets the color attribute value */ fontcolor(color: string): string; - /** Returns a HTML element and sets the size attribute value */ + /** Returns a `` HTML element and sets the size attribute value */ fontsize(size: number): string; - /** Returns a HTML element and sets the size attribute value */ + /** Returns a `` HTML element and sets the size attribute value */ fontsize(size: string): string; - /** Returns an HTML element */ + /** Returns an `` HTML element */ italics(): string; - /** Returns an HTML element and sets the href attribute value */ + /** Returns an `` HTML element and sets the href attribute value */ link(url: string): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ small(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ strike(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ sub(): string; - /** Returns a HTML element */ + /** Returns a `` HTML element */ sup(): string; }