UNPKG

@gamesberry/karmyc-core

Version:

A flexible and powerful layout management system for React applications

12 lines (11 loc) 341 B
import { IntercardinalDirection } from "../../../types/directions"; export interface SplitResult { newRowId: string; separatorIndex: number; } export declare const splitArea: (set: any) => (payload: { areaIdToSplit: string; parentRowId: string | null; horizontal: boolean; corner: IntercardinalDirection; }) => null;