Skip to content

Commit 024ab01

Browse files
committed
Add type for DomApiNative's setAttribute method.
1 parent 36fb37e commit 024ab01

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/legacy/polymer.dom.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ declare class DomApiNative {
138138
insertBefore(newChild: Node, refChild: Node|null): Node;
139139
removeChild(node: Node): Node;
140140
replaceChild(oldChild: Node, newChild: Node): Node;
141+
setAttribute(name: string, value: string): void;
141142
removeAttribute(name: string): void;
142143
querySelector(selector: string): Element|null;
143144
querySelectorAll(selector: string): NodeListOf<Element>;

0 commit comments

Comments
 (0)