UNPKG

expo-asset

Version:

An Expo universal module to download assets and pass them into other APIs

8 lines (7 loc) 303 B
import { type ConfigPlugin } from 'expo/config-plugins'; export type AssetProps = { /** An array of asset files or directories to link to the native project, relative to the project root. */ assets?: string[]; }; declare const _default: ConfigPlugin<AssetProps | null>; export default _default;