UNPKG

expo-sharing

Version:

Provides a way to share files directly with other compatible applications.

10 lines (9 loc) 711 B
import { ConfigPlugin, AndroidManifest, AndroidConfig, ExportedConfigWithProps } from '@expo/config-plugins'; import { SingleIntentFilter, MultiIntentFilter, IntentFilter } from '../sharingPlugin.types'; type WithAndroidIntentFiltersOptions = { intentFilters: IntentFilter[]; }; export declare const withAndroidIntentFilters: ConfigPlugin<WithAndroidIntentFiltersOptions>; export declare function setAndroidIntentFilters(config: ExportedConfigWithProps<AndroidManifest>, intentFilters: IntentFilter[]): ExportedConfigWithProps<AndroidManifest>; export default function renderIntentFilters(intentFilters: (SingleIntentFilter | MultiIntentFilter)[]): AndroidConfig.Manifest.ManifestIntentFilter[]; export {};