export interface MoveScreenTab {
  /** The ID of the screen. */
  screenId: number;
  /** The ID of the screen tab. */
  tabId: number;
  /** The position of tab. The base index is 0. */
  pos: number;
}
