UNPKG

@ansible/ansible-ui-framework

Version:

A framework for building applications using PatternFly.

12 lines (11 loc) 406 B
export interface BulkSelectorProps<T> { itemCount?: number; pageItems?: T[]; selectedItems?: T[]; selectItems?: (items: T[]) => void; unselectAll?: () => void; keyFn: (item: T) => string | number; selectNoneText?: string; maxSelections?: number; } export declare function BulkSelector<T extends object>(props: BulkSelectorProps<T>): import("react/jsx-runtime").JSX.Element;