feat: add nstore

This commit is contained in:
2024-04-07 15:11:20 +07:00
parent 999073f84c
commit 420be77b5c
75 changed files with 410 additions and 349 deletions

View File

@@ -75,8 +75,14 @@ export interface RichContent {
notes: string[];
}
export interface ColumnRouteSearch {
account: string;
label: string;
name: string;
}
export interface LumeColumn {
id: number;
label: string;
name: string;
content: URL | string;
description?: string;
@@ -89,7 +95,7 @@ export interface LumeColumn {
export interface EventColumns {
type: "add" | "remove" | "update" | "left" | "right";
id?: number;
label?: string;
column?: LumeColumn;
}