react-layouts-builder
Version:
Lightweight and powerfull react layouts drag and drop
8 lines (7 loc) • 484 B
TypeScript
import { LayoutType } from '../interfaces/types';
export declare const createLayoutContainer: (block: any) => LayoutType;
export declare const createLayoutRow: (block: any) => LayoutType;
export declare const createLayoutBlock: (block: any) => LayoutType;
export declare const createRow: (layout: LayoutType[]) => LayoutType;
export declare const createCol: (layout: LayoutType[]) => LayoutType;
export declare const addOrientationCol: (layouts: LayoutType[]) => LayoutType[];