Properties of an Any.
| 4 | export namespace tensorflow { |
| 5 | /** Properties of an Any. */ |
| 6 | interface IAny { |
| 7 | /** Any typeUrl */ |
| 8 | typeUrl?: (string|null); |
| 9 | |
| 10 | /** Any value */ |
| 11 | value?: (Uint8Array|null); |
| 12 | } |
| 13 | |
| 14 | /** Represents an Any. */ |
| 15 | class Any implements IAny { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…