jira.js
    Preparing search index...

    Variable GetAllSprintsSchemaConst

    GetAllSprintsSchema: ZodObject<
        {
            boardId: ZodNumber;
            maxResults: ZodOptional<ZodNumber>;
            startAt: ZodOptional<ZodNumber>;
            state: ZodOptional<
                ZodCustom<
                    "active"
                    | "closed"
                    | string & {}
                    | "future",
                    "active" | "closed" | string & {} | "future",
                >,
            >;
        },
        $strip,
    > = ...