| 222 | } |
| 223 | |
| 224 | export class UI implements IUI { |
| 225 | readonly native; |
| 226 | readonly android?; |
| 227 | readonly ios?; |
| 228 | readonly app: FirebaseApp; |
| 229 | |
| 230 | constructor(app?: FirebaseApp); |
| 231 | |
| 232 | useEmulator(host: string, port: number); |
| 233 | |
| 234 | show(config: Config): Promise<IdpResponse>; |
| 235 | |
| 236 | delete(): Promise<void>; |
| 237 | |
| 238 | signOut(): Promise<void>; |
| 239 | } |
| 240 | |
| 241 | declare module '@nativescript/firebase-core' { |
| 242 | export interface Firebase extends FirebaseUI {} |
nothing calls this directly
no outgoing calls
no test coverage detected