Files
Fluxup_PAP/node_modules/expo-modules-autolinking/build/autolinking/generatePackageList.d.ts
2026-03-10 16:18:05 +00:00

11 lines
434 B
TypeScript

import { ModuleDescriptor, SupportedPlatform } from '../types';
interface GenerateModulesProviderParams {
platform: SupportedPlatform;
targetPath: string;
entitlementPath: string | null;
}
/** Generates ExpoModulesProvider file listing all packages to link (Apple-only)
*/
export declare function generateModulesProviderAsync(modules: ModuleDescriptor[], params: GenerateModulesProviderParams): Promise<void>;
export {};