ColDefWithId

AG Grid Column Definition with a mandatory colId property

TypeScript
export type ColDefWithId = Omit<ColDef, 'colId'> & {
    colId: string;
};