mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 03:09:14 +08:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
|
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)
|
||
|
}
|