chore: remove deprecated apis for ns 6.0 (#7382)

This commit is contained in:
Manol Donev
2019-06-25 16:52:01 +03:00
committed by GitHub
parent 0bfddab915
commit b20e771552
108 changed files with 413 additions and 1850 deletions

View File

@@ -85,13 +85,6 @@ export abstract class WebViewBase extends ContainerView implements WebViewDefini
this._loadData(src);
}
}
get url(): string {
throw new Error("Property url of WebView is deprecated. Use src instead");
}
set url(value: string) {
throw new Error("Property url of WebView is deprecated. Use src instead")
}
}
export interface WebViewBase {
on(eventNames: string, callback: (data: EventData) => void, thisArg?: any);