@shortcut/client
    Preparing search index...

    Interface SetPosition

    One of "first", "last", "before", or "after". This can be used to move the Checklist Item to the first or last position in the Story's checklist, or before or after a given Checklist Item.

    interface SetPosition {
        anchor_checklist_item_id?: number;
        position: "last" | "first" | "after" | "before";
    }
    Index

    Properties

    anchor_checklist_item_id?: number

    int64

    position: "last" | "first" | "after" | "before"