/** * Validate input for reordering children of an xblock. */ export type ReorderChildren = { /** * The parent xblock whose children to reorder. */ xblock_id: string; /** * Ordered list of child xblock IDs. All existing children must be included. */ children: Array; };