()
| 102 | export abstract class AppCheckProviderFactory { |
| 103 | _native: FIRAppCheckProviderFactoryCustomImpl; |
| 104 | constructor() { |
| 105 | this._native = FIRAppCheckProviderFactoryCustomImpl.initWithOwner(new WeakRef(this)); |
| 106 | } |
| 107 | abstract createProvider(app: FirebaseApp): AppCheckProvider; |
| 108 | |
| 109 | get native() { |
nothing calls this directly
no test coverage detected