declare global { interface PluginRegistry { WebView?: WebView; } } export interface WebView { show(): Promise; hide(): Promise; }