Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Udit Takkar <udit222001@gmail.com>
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZConnectAndJoinInputSchema = z.object({
|
|
token: z.string(),
|
|
});
|
|
|
|
export type TConnectAndJoinInputSchema = z.infer<typeof ZConnectAndJoinInputSchema>;
|