(documentRef: IDocumentReference<T>)
| 185 | |
| 186 | export interface ITransaction { |
| 187 | delete<T extends DocumentData = DocumentData>(documentRef: IDocumentReference<T>): ITransaction; |
| 188 | |
| 189 | get<T extends DocumentData = DocumentData>(documentRef: IDocumentReference<T>): Promise<IDocumentSnapshot<T>>; |
| 190 |
nothing calls this directly
no outgoing calls
no test coverage detected