()
| 152 | } |
| 153 | |
| 154 | dateTime(): this { |
| 155 | assert(this._data._kind === 'initial', 'Field type was already set'); |
| 156 | |
| 157 | this._data = { |
| 158 | field: this._data.field, |
| 159 | ...DATE_TIME_FIELD, |
| 160 | _kind: 'finished', |
| 161 | }; |
| 162 | |
| 163 | return this; |
| 164 | } |
| 165 | |
| 166 | decimal(): this { |
| 167 | assert(this._data._kind === 'initial', 'Field type was already set'); |
no outgoing calls
no test coverage detected