UNPKG

baseui

Version:

A React Component library implementing the Base design language

18 lines (17 loc) 526 B
import * as React from 'react'; import type { ColumnOptions, SharedColumnOptions } from './types'; type Value = { content: string; href: string; }; type ReplacementElementAs = React.ComponentType<{ href: string; children: string; }>; type Options = { elementAs?: ReplacementElementAs | string; } & SharedColumnOptions<Value>; type FilterParameters = {}; type AnchorColumn = ColumnOptions<Value, FilterParameters>; declare function AnchorColumn(options: Options): AnchorColumn; export default AnchorColumn;