(collectionPath: string)
| 1539 | } |
| 1540 | |
| 1541 | collection(collectionPath: string): CollectionReference { |
| 1542 | return CollectionReference.fromNative(this.native.collection(collectionPath)); |
| 1543 | } |
| 1544 | |
| 1545 | clearPersistence(): Promise<void> { |
| 1546 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected