Revert "fix: 修掉漏掉的"

This reverts commit 7a42f8c26f.
This commit is contained in:
手瓜一十雪
2025-04-19 11:01:06 +08:00
parent 3b16effff0
commit 5c35ea11c3
3 changed files with 4 additions and 2 deletions

View File

@@ -2,6 +2,8 @@ import { z } from 'zod';
export const themeType = z.object(
{
// dark: Type.Record(Type.String(), Type.String()),
// light: Type.Record(Type.String(), Type.String()),
dark: z.record(z.string(), z.string()),
light: z.record(z.string(), z.string()),
}