📎 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 ::type keyword?)
(s/def ::uuid uuid?) (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 (s/def ::safe-integer
#(and #(and
(integer? %) (integer? %)
(>= % min-safe-int) (>= % min-safe-int)
(<= % max-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 (s/def ::safe-number
#(and #(and
@ -55,6 +56,7 @@
(>= % min-safe-int) (>= % min-safe-int)
(<= % max-safe-int))) (<= % max-safe-int)))
;; GRADIENTS ;; GRADIENTS
(s/def :internal.gradient.stop/color ::string) (s/def :internal.gradient.stop/color ::string)