📎 Minor cosmetic changes.

This commit is contained in:
Andrey Antukh
2020-11-23 11:24:33 +01:00
committed by Alonso Torres
parent 742af4e066
commit 0e43fb3f06

View File

@@ -39,15 +39,16 @@
(s/def ::type keyword?)
(s/def ::uuid uuid?)
(s/def ::component-id uuid?)
(s/def ::component-file uuid?)
(s/def ::component-root? boolean?)
(s/def ::shape-ref uuid?)
(s/def ::safe-integer
#(and
(integer? %)
(>= % min-safe-int)
(<= % max-safe-int)))
(s/def ::component-id uuid?)
(s/def ::component-file uuid?)
(s/def ::component-root? boolean?)
(s/def ::shape-ref uuid?)
(s/def ::safe-number
#(and
@@ -55,6 +56,7 @@
(>= % min-safe-int)
(<= % max-safe-int)))
;; GRADIENTS
(s/def :internal.gradient.stop/color ::string)