mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui.git
synced 2025-11-01 19:27:58 +00:00
25 lines
624 B
TypeScript
25 lines
624 B
TypeScript
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
import { BoxProps } from '@chakra-ui/react';
|
|
import '@tanstack/react-table';
|
|
|
|
declare module '@tanstack/table-core' {
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
stopPropagation?: boolean;
|
|
alwaysShow?: boolean;
|
|
anchored?: boolean;
|
|
hasPopover?: boolean;
|
|
customMaxWidth?: string;
|
|
customMinWidth?: string;
|
|
customWidth?: string;
|
|
isMonospace?: boolean;
|
|
isCentered?: boolean;
|
|
columnSelectorOptions?: {
|
|
label?: string;
|
|
};
|
|
headerOptions?: {
|
|
tooltip?: string;
|
|
};
|
|
headerStyleProps?: BoxProps;
|
|
}
|
|
}
|