UNPKG

a2r

Version:
8 lines (7 loc) 276 B
/** * Copies files from template to destination path * @param project Project type (next, expo, service) * @param destPath Destination path */ declare const copyFilesFromTemplate: (project: string, destPath: string) => Promise<void>; export default copyFilesFromTemplate;