(description: string)
| 215 | } |
| 216 | |
| 217 | export function pointField(description: string): CommandField<PointInput> { |
| 218 | return optionalField(pointSchema(description), (record, key) => |
| 219 | record[key] === undefined ? undefined : readPoint(record, key), |
| 220 | ); |
| 221 | } |
| 222 | |
| 223 | export function selectorSnapshotFields() { |
| 224 | return { |
no test coverage detected
searching dependent graphs…