UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

11 lines (10 loc) 302 B
import { FunctionComponent } from 'react'; interface ScrollbarProps { containerHeight: number; visibleListSectionLength: number; fullListLength: number; visibleFromIndex: number; noColor?: boolean; } declare const Scrollbar: FunctionComponent<ScrollbarProps>; export { Scrollbar };