ttabs-svelte
Version:
A flexible layout management system with draggable, resizable tiles and tabs for Svelte applications. Like in VSCode
8 lines (7 loc) • 322 B
TypeScript
import { type LayoutValidator } from './validation-types';
/**
* Default validator that performs basic integrity checks on a ttabs layout
* @param ttabs The ttabs instance to validate
* @returns true if layout is valid, throws LayoutValidationError otherwise
*/
export declare const defaultValidator: LayoutValidator;