feat: rework multi account

This commit is contained in:
2024-10-24 15:50:45 +07:00
parent 469296790e
commit 055d73c829
31 changed files with 979 additions and 1207 deletions

View File

@@ -61,10 +61,10 @@ export interface LumeColumn {
export interface ColumnEvent {
type: "reset" | "add" | "remove" | "update" | "move" | "set_title";
label?: string;
title?: string;
column?: LumeColumn;
direction?: "left" | "right";
column: LumeColumn;
label: string;
title: string;
direction: "left" | "right";
}
export interface Relays {