(value)
| 9 | export * from './dialogs-common'; |
| 10 | |
| 11 | function isString(value): value is string { |
| 12 | return typeof value === 'string'; |
| 13 | } |
| 14 | |
| 15 | function createAlertDialog(options?: DialogOptions): android.app.AlertDialog.Builder { |
| 16 | const alert = new android.app.AlertDialog.Builder(androidUtils.getCurrentActivity(), options.theme ? options.theme : -1); |
no outgoing calls
no test coverage detected