* fix: make actions column sticky in members list * clean up import * change type definition * remove old export * include tanstack.d.ts * fix declaration file * move type def to packages/types/tanstack-table.d.ts --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com>
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import "@tanstack/react-table";
|
|
|
|
declare module "@tanstack/table-core" {
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
sticky?: {
|
|
position: "left" | "right";
|
|
gap?: number;
|
|
};
|
|
}
|
|
}
|