interface IColumnRenderProps {
    index: number;
    name: string;
    selection: boolean[];
    setSelection: Dispatch<SetStateAction<boolean[]>>;
}

Properties

index: number
name: string
selection: boolean[]
setSelection: Dispatch<SetStateAction<boolean[]>>