UNPKG

@gamesberry/karmyc-core

Version:

A flexible and powerful layout management system for React applications

9 lines (8 loc) 298 B
import { AreaLayout, AreaRowLayout } from "../types/areaTypes"; export type Layout = AreaLayout | AreaRowLayout; export declare const computeAreaRowToMinSize: (rootId: string, areaLayout: Record<string, Layout>) => { [areaId: string]: { width: number; height: number; }; };