Closed
Description
sometimes the configured typesPrefix
is missing which leads to typescript error.
export function xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgsSchema(): z.ZodObject<
Properties<xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgs>
> {
return z.object({
limit: z.number().nullish(),
offset: z.number().nullish(),
});
}
instead of
export function xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgsSchema(): z.ZodObject<
Properties<IxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxArgs>
> {
return z.object({
limit: z.number().nullish(),
offset: z.number().nullish(),
});
}
Metadata
Metadata
Assignees
Labels
No labels