fedicrawl/application/src/Fediverse/Providers/Peertube/Avatar.ts

8 wiersze
161 B
TypeScript
Czysty Zwykły widok Historia

2021-12-23 14:14:06 +00:00
import { z } from 'zod'
2022-09-14 19:16:04 +00:00
export const avatarSchema = z.optional(z.nullable(z.object({
2021-12-23 14:14:06 +00:00
path: z.string()
2022-09-14 19:16:04 +00:00
})))
2021-12-23 14:14:06 +00:00
export type Avatar = z.infer<typeof avatarSchema>