feat(stores): location stores
This commit is contained in:
@ -8,6 +8,7 @@ export const locationStore = z
|
|||||||
lat: z.number().min(-90).max(90),
|
lat: z.number().min(-90).max(90),
|
||||||
lng: z.number().min(-180).max(180),
|
lng: z.number().min(-180).max(180),
|
||||||
name: z.string().min(1).max(100),
|
name: z.string().min(1).max(100),
|
||||||
|
icon: z.string().min(1).max(100).optional(),
|
||||||
})
|
})
|
||||||
.strict();
|
.strict();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user