mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const ZOSSFriendsSchema = z.array(
|
|
z.object({
|
|
name: z.string(),
|
|
href: z.string().url(),
|
|
description: z.string(),
|
|
}),
|
|
);
|
|
|
|
export type TOSSFriendsSchema = z.infer<typeof ZOSSFriendsSchema>;
|