Knockout uses Nodes, not Elements

Less restrictive API: knockout uses nodes, not elements.
This commit is contained in:
Sergio Morchón Poveda
2015-05-11 10:02:25 +02:00
parent 52fdabbd26
commit 28ad1db4bf
+2 -2
View File
@@ -248,9 +248,9 @@ interface KnockoutUtils {
removeDisposeCallback(node: Element, callback: Function): void;
cleanNode(node: Element): Element;
cleanNode(node: Node): Element;
removeNode(node: Element): void;
removeNode(node: Node): void;
};
//////////////////////////////////