(fieldPath: string | number | FieldPath)
| 606 | } |
| 607 | |
| 608 | get<fieldType extends DocumentFieldType>(fieldPath: string | number | FieldPath): fieldType { |
| 609 | if (fieldPath instanceof FieldPath) { |
| 610 | return deserializeField(this.native.valueForField(fieldPath.native)); |
| 611 | } else { |
| 612 | return deserializeField(this.native.valueForField(fieldPath)); |
| 613 | } |
| 614 | } |
| 615 | |
| 616 | get native() { |
| 617 | return this._native; |
nothing calls this directly
no test coverage detected