UNPKG

burdy

Version:

Open Source Headless Platform

9 lines (8 loc) 352 B
import React from 'react'; import { ICommandBarProps } from '@fluentui/react'; declare type ColumnType = 'add' | 'edit' | 'delete' | 'refresh'; export interface IGroupCommandBarProps extends Partial<ICommandBarProps> { visibleColumns?: ColumnType[]; } declare const GroupCommandBar: React.FC<IGroupCommandBarProps>; export default GroupCommandBar;