mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const ZCreateOrGetShareLinkMutationSchema = z.object({
|
|
documentId: z.number(),
|
|
token: z.string().optional(),
|
|
});
|
|
|
|
export type TCreateOrGetShareLinkMutationSchema = z.infer<
|
|
typeof ZCreateOrGetShareLinkMutationSchema
|
|
>;
|