@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
17 lines (16 loc) • 720 B
TypeScript
import React from 'react';
import { TableProps } from './interfaces';
interface TableHeaderCellProps {
className?: string;
style?: React.CSSProperties;
tabIndex: number;
column: TableProps.ColumnDefinition<any>;
activeSortingColumn: TableProps.SortingColumn<any> | undefined;
sortingDescending: boolean | undefined;
sortingDisabled: boolean | undefined;
wrapLines: boolean | undefined;
resizer: React.ReactNode;
onClick(detail: TableProps.SortingState<any>): void;
}
export declare function TableHeaderCell({ className, style, tabIndex, column, activeSortingColumn, sortingDescending, sortingDisabled, wrapLines, resizer, onClick }: TableHeaderCellProps): JSX.Element;
export {};