first commit

This commit is contained in:
Первов Артем
2026-06-19 08:18:52 +03:00
commit 05a9e0e535
61 changed files with 11950 additions and 0 deletions

10
src/edge/edge.types.ts Normal file
View File

@@ -0,0 +1,10 @@
export type EdgeRow = {
id: string;
name: string;
parent_id: string | null;
tag_ids: string[];
tag_count: number;
current_tag_count: number;
live_tag_count: number;
last_data_at: Date | null;
};