chore: follow up

This commit is contained in:
2024-03-19 15:36:20 +07:00
parent 7fabf949c6
commit 5d59040224
14 changed files with 145 additions and 155 deletions

View File

@@ -81,6 +81,7 @@ export interface RichContent {
}
export interface LumeColumn {
id: number;
content: string;
name: string;
description?: string;
@@ -88,6 +89,12 @@ export interface LumeColumn {
logo?: string;
}
export interface EventColumns {
type: "add" | "remove" | "update" | "left" | "right";
id?: number;
column?: LumeColumn;
}
export interface Opengraph {
url: string;
title?: string;