()
| 48 | } |
| 49 | |
| 50 | getSource(): 'default' | 'static' | 'remote' { |
| 51 | switch (this.native.source) { |
| 52 | case FIRRemoteConfigSource.Default: |
| 53 | return 'default'; |
| 54 | case FIRRemoteConfigSource.Static: |
| 55 | return 'static'; |
| 56 | case FIRRemoteConfigSource.Remote: |
| 57 | return 'remote'; |
| 58 | } |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | export class ConfigSettings implements IConfigSettings { |
nothing calls this directly
no outgoing calls
no test coverage detected