You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
854 B
15 lines
854 B
import { ModuleDescriptorIos, ModuleIosPodspecInfo, PackageRevision, SearchOptions } from '../types';
|
|
export declare function getSwiftModuleNames(pods: ModuleIosPodspecInfo[], swiftModuleNames: string[] | undefined): string[];
|
|
/**
|
|
* Resolves module search result with additional details required for iOS platform.
|
|
*/
|
|
export declare function resolveModuleAsync(packageName: string, revision: PackageRevision, options: SearchOptions): Promise<ModuleDescriptorIos | null>;
|
|
/**
|
|
* Generates Swift file that contains all autolinked Swift packages.
|
|
*/
|
|
export declare function generatePackageListAsync(modules: ModuleDescriptorIos[], targetPath: string): Promise<void>;
|
|
/**
|
|
* Formats an array of modules to Swift's array containing ReactDelegateHandlers
|
|
*/
|
|
export declare function formatArrayOfReactDelegateHandler(modules: ModuleDescriptorIos[]): string;
|