UNPKG

@expo/config-plugins

Version:

A library for Expo config plugins

5 lines (4 loc) 322 B
/** A basic function that copies a single file to another file location. */ export declare function copyFilePathToPathAsync(src: string, dest: string): Promise<void>; /** Remove a single file (not directory). Returns `true` if a file was actually deleted. */ export declare function removeFile(filePath: string): boolean;