UNPKG

ttabs-svelte

Version:

A flexible layout management system with draggable, resizable tiles and tabs for Svelte applications. Like in VSCode

9 lines (8 loc) 266 B
import type { TtabsProps } from "./props"; interface RowProps extends TtabsProps { heightPx?: number; isLast?: boolean; } declare const TileRow: import("svelte").Component<RowProps, {}, "">; type TileRow = ReturnType<typeof TileRow>; export default TileRow;