DashboardSection

TypeScript
type DashboardSection = {
  style?: {
    bar?: {
      background?: string;
      color?: string;
      buttonColor?: string;
    };
    tabs?: {
      background?: string;
    };
  };
  widgets?: WidgetState[];
  size?: {
    bar?: number;
    drawer?: number;
  };
  disableResize?: boolean;
};
References

WidgetState