@aplus-frontend/ui
Version:
9 lines (8 loc) • 329 B
TypeScript
import { Ref, ComputedRef } from 'vue';
import { ItemType } from './useItems';
export type ResizableInfo = {
resizable: boolean;
startCollapsible: boolean;
endCollapsible: boolean;
};
export declare const useResizable: (items: Ref<ItemType[]>, pxSizes: Ref<number[]>, isRTL: boolean) => ComputedRef<ResizableInfo[]>;