@capacitor/share
Version:
The Share API provides methods for sharing content in any sharing-enabled apps the user may have installed.
7 lines (6 loc) • 310 B
TypeScript
import { WebPlugin } from '@capacitor/core';
import type { CanShareResult, ShareOptions, SharePlugin, ShareResult } from './definitions';
export declare class ShareWeb extends WebPlugin implements SharePlugin {
canShare(): Promise<CanShareResult>;
share(options: ShareOptions): Promise<ShareResult>;
}