aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-shared/src/schemas.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/service-shared/src/schemas.ts')
-rw-r--r--packages/service-shared/src/schemas.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/service-shared/src/schemas.ts b/packages/service-shared/src/schemas.ts
index bb1926f..799faac 100644
--- a/packages/service-shared/src/schemas.ts
+++ b/packages/service-shared/src/schemas.ts
@@ -31,15 +31,3 @@ export const UnreadCount = /* @__PURE__ */ (() =>
31 Intentionally naming the type the same as the schema definition. 31 Intentionally naming the type the same as the schema definition.
32*/ 32*/
33export type UnreadCount = z.infer<typeof UnreadCount>; 33export type UnreadCount = z.infer<typeof UnreadCount>;
34
35export const WebSource = /* @__PURE__ */ (() =>
36 z.object({
37 code: z.string(),
38 url: z.string().nonempty(),
39 }))();
40
41/*
42 eslint-disable-next-line @typescript-eslint/no-redeclare --
43 Intentionally naming the type the same as the schema definition.
44*/
45export type WebSource = z.infer<typeof WebSource>;