react-native-integrate
Version:
Automate integration of additional code into React Native projects
18 lines (17 loc) • 582 B
TypeScript
import { BlockContentType, BuildGradleTaskType } from '../types/mod.types';
export declare function buildGradleTask(args: {
configPath: string;
packageName: string;
content: string;
task: BuildGradleTaskType;
}): Promise<string>;
export declare function findOrCreateBlock(content: string, block: string): {
blockContent: BlockContentType;
content: string;
};
export declare function runTask(args: {
configPath: string;
packageName: string;
task: BuildGradleTaskType;
}): Promise<void>;
export declare const summary = "build.gradle modification";