@capacitor/app-launcher
Version:
The AppLauncher API allows to open other apps
7 lines (6 loc) • 390 B
TypeScript
import { WebPlugin } from '@capacitor/core';
import type { AppLauncherPlugin, CanOpenURLOptions, CanOpenURLResult, OpenURLOptions, OpenURLResult } from './definitions';
export declare class AppLauncherWeb extends WebPlugin implements AppLauncherPlugin {
canOpenUrl(_options: CanOpenURLOptions): Promise<CanOpenURLResult>;
openUrl(options: OpenURLOptions): Promise<OpenURLResult>;
}