/* Copyright 2026 Marimo. All rights reserved. */ /* oxlint-disable typescript/no-empty-object-type */ import type { RowData } from "@tanstack/react-table"; export interface CopyColumnOptions { enableCopyColumn?: boolean; } export interface CopyColumnInstance { getCanCopy?: () => boolean; } // Use declaration merging to add our new feature APIs declare module "@tanstack/react-table" { interface TableOptionsResolved< TData extends RowData, > extends CopyColumnOptions {} interface Column extends CopyColumnInstance {} }