MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / Props

Interface Props

src/features/executions/components/gemini/dialog.tsx:52–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50export type GeminiFormValues = z.infer<typeof formSchema>;
51
52interface Props {
53 open: boolean;
54 onOpenChange: (open: boolean) => void;
55 onSubmit: (values: z.infer<typeof formSchema>) => void;
56 defaultValues?: Partial<GeminiFormValues>;
57};
58
59export const GeminiDialog = ({
60 open,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected