summaryrefslogtreecommitdiffstats
path: root/src/schemas/misc.ts
blob: e86df72610b4d16cd34474e825181243150cfe87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { type } from "arktype";

export const miscSchema = type.or(
	{
		type: "'home'",
		title: "string",
		description: "string",
	},
	{
		type: "'releases-index'",
		title: "string",
		description: "string",
	},
);

export type Misc = typeof miscSchema.infer;