feat: add ability change column name on the fly (#180)

Co-authored-by: reya <reya@lume.nu>
This commit is contained in:
Ren Amamiya
2024-04-22 14:33:14 +07:00
committed by GitHub
parent 17766d29d6
commit c755b8d137
4 changed files with 70 additions and 9 deletions

View File

@@ -102,8 +102,9 @@ export interface LumeColumn {
}
export interface EventColumns {
type: "add" | "remove" | "update" | "left" | "right";
type: "add" | "remove" | "update" | "left" | "right" | "set_title";
label?: string;
title?: string;
column?: LumeColumn;
}