(filepath: string, destPath: string)
| 362 | |
| 363 | // Android only |
| 364 | copyFileAssets(filepath: string, destPath: string) { |
| 365 | if (!RNFSManager.copyFileAssets) { |
| 366 | throw new Error('copyFileAssets is not available on this platform'); |
| 367 | } |
| 368 | return RNFSManager.copyFileAssets(normalizeFilePath(filepath), normalizeFilePath(destPath)).then(() => void 0); |
| 369 | }, |
| 370 | |
| 371 | // Android only |
| 372 | copyFileRes(filename: string, destPath: string) { |
nothing calls this directly
no test coverage detected