UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

8 lines (7 loc) 270 B
import type { ItemType } from './useItems'; export type ResizableInfo = { resizable: boolean; startCollapsible: boolean; endCollapsible: boolean; }; export default function useResizable(items: ItemType[], pxSizes: number[], isRTL: boolean): ResizableInfo[];