(milliseconds: number)
| 1085 | } |
| 1086 | |
| 1087 | static fromMillis(milliseconds: number) { |
| 1088 | const ts = new Timestamp(0, 0, true); |
| 1089 | ts._native = FIRTimestamp.timestampWithSecondsNanoseconds(milliseconds / 1000, 0); |
| 1090 | return ts; |
| 1091 | } |
| 1092 | |
| 1093 | static now() { |
| 1094 | const ts = new Timestamp(0, 0, true); |
nothing calls this directly
no outgoing calls
no test coverage detected