(filepath: string, destPath: string, options: FileOptions = {})
| 202 | }, |
| 203 | |
| 204 | copyFile(filepath: string, destPath: string, options: FileOptions = {}): Promise<void> { |
| 205 | return RNFSManager.copyFile(normalizeFilePath(filepath), normalizeFilePath(destPath), options).then(() => void 0); |
| 206 | }, |
| 207 | |
| 208 | pathForBundle(bundleNamed: string): Promise<string> { |
| 209 | return RNFSManager.pathForBundle(bundleNamed); |
nothing calls this directly
no test coverage detected