UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

14 lines (12 loc) 303 B
import type { DynamicRowHeight } from './types' export function isDynamicRowHeight( value: unknown, ): value is DynamicRowHeight { return ( typeof value === 'object' && value !== null && 'getAverageRowHeight' in value && 'getRowHeight' in value && 'setRowHeight' in value ) }