(collectionPath: string)
| 1371 | } |
| 1372 | |
| 1373 | collection(collectionPath: string): CollectionReference { |
| 1374 | return CollectionReference.fromNative(this.native.collectionWithPath(collectionPath)); |
| 1375 | } |
| 1376 | |
| 1377 | clearPersistence(): Promise<void> { |
| 1378 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected