0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-22 22:49:01 -05:00

Add shape schema definition.

This commit is contained in:
Andrey Antukh 2015-12-29 23:38:09 +02:00
parent 91fabcb148
commit 78f619b25d

View file

@ -16,6 +16,13 @@
:width [v/required v/integer]
:height [v/required v/integer]})
(def ^:static +shape-schema+
{:x [v/integer]
:y [v/integer]
:width [v/integer]
:height [v/integer]
:type [v/required sc/shape-type]})
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Events
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;