baseui
Version:
A React Component library implementing the Base design language
11 lines (10 loc) • 380 B
TypeScript
import type { ColumnOptions, SharedColumnOptions } from './types';
type Options = {} & SharedColumnOptions<boolean>;
type FilterParameters = {
selection: Set<boolean>;
description: string;
exclude: boolean;
};
type BooleanColumn = ColumnOptions<boolean, FilterParameters>;
declare function BooleanColumn(options: Options): BooleanColumn;
export default BooleanColumn;