lineCap.json 286 B

12345678910111213141516171819
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "number",
  4. "oneOf": [
  5. {
  6. "standsFor": "butt",
  7. "const": 1
  8. },
  9. {
  10. "standsFor": "round",
  11. "const": 2
  12. },
  13. {
  14. "standsFor": "square",
  15. "const": 3
  16. }
  17. ],
  18. "default": 2
  19. }