Variable GetCommentsSchemaConst
GetCommentsSchema: ZodObject<
{
expand: ZodOptional<
ZodUnion<
readonly [
ZodString,
ZodArray<ZodString>,
ZodCustom<string & {} | "renderedBody", string & {} | "renderedBody">,
ZodArray<
ZodCustom<
string & {}
| "renderedBody",
string & {} | "renderedBody",
>,
>,
],
>,
>;
issueIdOrKey: ZodString;
maxResults: ZodOptional<ZodNumber>;
orderBy: ZodOptional<
ZodCustom<
string & {}
| "created"
| "-created"
| "+created",
string & {} | "created" | "-created" | "+created",
>,
>;
startAt: ZodOptional<ZodNumber>;
},
$strip,
> = ...