(storage: FIRStorage)
| 578 | } |
| 579 | |
| 580 | static fromNative(storage: FIRStorage) { |
| 581 | if (storage instanceof FIRStorage) { |
| 582 | const store = new Storage(); |
| 583 | store._native = storage; |
| 584 | return store; |
| 585 | } |
| 586 | return null; |
| 587 | } |
| 588 | |
| 589 | useEmulator(host: string, port: number) { |
| 590 | this.native.useEmulatorWithHostPort(host, port); |
nothing calls this directly
no outgoing calls
no test coverage detected