(filePath: string)
| 227 | const MajorVersion = NSString.stringWithString(UIDevice.currentDevice.systemVersion).intValue; |
| 228 | |
| 229 | export function openFile(filePath: string): boolean { |
| 230 | console.log('utils.ios.openFile() is deprecated; use utils.openFile() instead'); |
| 231 | |
| 232 | return openFileAtRootModule(filePath); |
| 233 | } |
| 234 | |
| 235 | function getVisibleViewController(rootViewController: UIViewController): UIViewController { |
| 236 | let viewController = rootViewController; |
nothing calls this directly
no test coverage detected