diff --git a/lib/legacy/polymer.dom.d.ts b/lib/legacy/polymer.dom.d.ts index d8dff4e1f1..fc713e27ad 100644 --- a/lib/legacy/polymer.dom.d.ts +++ b/lib/legacy/polymer.dom.d.ts @@ -138,6 +138,7 @@ declare class DomApiNative { insertBefore(newChild: Node, refChild: Node|null): Node; removeChild(node: Node): Node; replaceChild(oldChild: Node, newChild: Node): Node; + setAttribute(name: string, value: string): void; removeAttribute(name: string): void; querySelector(selector: string): Element|null; querySelectorAll(selector: string): NodeListOf;