newsnow/shared/verify.ts

9 lines
199 B
TypeScript
Raw Normal View History

2024-10-15 12:05:03 +08:00
import z from "zod"
export function verifyPrimitiveMetadata(target: any) {
return z.object({
data: z.record(z.string(), z.array(z.string())),
updatedTime: z.number(),
}).parse(target)
}