From 0dc3c270cf3241654a40c246d90af366b2982e72 Mon Sep 17 00:00:00 2001 From: philon- Date: Tue, 3 Jun 2025 13:50:58 +0200 Subject: [PATCH] Delete rasterSource.ts --- src/validation/rasterSource.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/validation/rasterSource.ts diff --git a/src/validation/rasterSource.ts b/src/validation/rasterSource.ts deleted file mode 100644 index 940676d2..00000000 --- a/src/validation/rasterSource.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { z } from "zod/v4"; - -export const MapValidation_RasterSourcesSchema = z.object({ - enabled: z.boolean(), - title: z.string(), - tiles: z.url(), - tileSize: z.number(), -}); - -export const MapValidationSchema = z.object({ - rasterSources: MapValidation_RasterSourcesSchema.array(), -}); - -export type MapValidation = z.infer;