@witchcraft/layout
    Preparing search index...
    • Returns a LayoutChange with the information necessary to uncollapse a docked frame.

      Changes can be applied to a window with applyFrameChanges.

      Uncollapsing restores the frame to its pre-collapse size, shrinking neighboring frames to make room.

      Parameters

      Returns
          | LayoutChange
          | KnownError<
              "REDISTRIBUTE_OUT_OF_BOUNDS",
              { max: number; min: number; wanted: number },
          >
          | KnownError<
              "NO_SPACE_TO_REDISTRIBUTE",
              { frameSizeNeeded: number; minFrameSize: number },
          >
          | KnownError<"CANT_UNCOLLAPSE_NOT_COLLAPSED", { frame: LayoutFrame }>