()
| 619 | } |
| 620 | |
| 621 | function interactionTargetSchema(): JsonSchema { |
| 622 | return { |
| 623 | oneOf: [ |
| 624 | ...elementTargetSchemaVariants(), |
| 625 | { |
| 626 | type: 'object', |
| 627 | properties: { |
| 628 | kind: { type: 'string', const: 'point' }, |
| 629 | x: { type: 'number' }, |
| 630 | y: { type: 'number' }, |
| 631 | }, |
| 632 | required: ['kind', 'x', 'y'], |
| 633 | additionalProperties: false, |
| 634 | }, |
| 635 | ], |
| 636 | description: 'UI target. This is separate from deviceTarget, which selects the device form.', |
| 637 | }; |
| 638 | } |
| 639 | |
| 640 | function elementTargetSchema(): JsonSchema { |
| 641 | return { |
no test coverage detected
searching dependent graphs…