UNPKG

263 BTypeScriptView Raw
1export declare type SharingOptions = {
2 mimeType?: string;
3 UTI?: string;
4 dialogTitle?: string;
5};
6export declare function isAvailableAsync(): Promise<boolean>;
7export declare function shareAsync(url: string, options?: SharingOptions): Promise<object>;