fix(select): update select interfaces

This commit is contained in:
Adam Bradley
2017-12-11 13:49:44 -06:00
parent 903a12dc39
commit 8b6a1826a3
15 changed files with 515 additions and 413 deletions

View File

@ -223,11 +223,6 @@ export function getOrAppendElement(tagName: string): Element {
return tmp;
}
/** @hidden */
export function deepCopy(obj: any) {
return JSON.parse(JSON.stringify(obj));
}
export function getWindow() {
return window;
}