@confed/sanity-types 0.1.2-2508181253 → 0.1.2-2508191936
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sanity.types.ts +11 -11
package/package.json
CHANGED
package/sanity.types.ts
CHANGED
|
@@ -925,25 +925,25 @@ export type SanityImagePalette = {
|
|
|
925
925
|
|
|
926
926
|
export type SanityImageDimensions = {
|
|
927
927
|
_type: 'sanity.imageDimensions'
|
|
928
|
-
height
|
|
929
|
-
width
|
|
930
|
-
aspectRatio
|
|
928
|
+
height: number
|
|
929
|
+
width: number
|
|
930
|
+
aspectRatio: number
|
|
931
931
|
}
|
|
932
932
|
|
|
933
933
|
export type SanityImageHotspot = {
|
|
934
934
|
_type: 'sanity.imageHotspot'
|
|
935
|
-
x
|
|
936
|
-
y
|
|
937
|
-
height
|
|
938
|
-
width
|
|
935
|
+
x: number
|
|
936
|
+
y: number
|
|
937
|
+
height: number
|
|
938
|
+
width: number
|
|
939
939
|
}
|
|
940
940
|
|
|
941
941
|
export type SanityImageCrop = {
|
|
942
942
|
_type: 'sanity.imageCrop'
|
|
943
|
-
top
|
|
944
|
-
bottom
|
|
945
|
-
left
|
|
946
|
-
right
|
|
943
|
+
top: number
|
|
944
|
+
bottom: number
|
|
945
|
+
left: number
|
|
946
|
+
right: number
|
|
947
947
|
}
|
|
948
948
|
|
|
949
949
|
export type SanityFileAsset = {
|