mirror of
https://github.com/documenso/documenso
synced 2026-04-30 09:27:19 +00:00
10 lines
258 B
TypeScript
10 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
|
|
>;
|