react-native-integrate
Version:
Automate integration of additional code into React Native projects
11 lines (10 loc) • 662 B
TypeScript
export declare function getPackageConfig(packageName: string, pagination?: {
index: number;
count: number;
}): Promise<string | null>;
export declare function getPackagePath(packageName: string): string;
export declare function getLocalPackageConfig(packageName: string): string | null;
export declare function downloadRemotePackageConfig(packageName: string): Promise<string | null>;
export declare function getRemotePath(packageName: string, pathTemplate?: string): string;
export declare function downloadFile(remotePath: string, localPath: string): Promise<boolean>;
export declare function getRemoteFile(remotePath: string): Promise<string | null>;