mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const ZShareLinkSchema = z.object({
|
|
documentId: z.number(),
|
|
recipientId: z.number(),
|
|
});
|
|
|
|
export type ZShareLinkSchema = z.infer<typeof ZShareLinkSchema>;
|